The '''Comb Sort''' is a variant of the [[Bubble Sort]].
Like the [[Shell sort]], the Comb Sort increases the gap used in comparisons and exchanges.
Dividing the gap by <big><math>(1-e^{-\varphi})^{-1} \approx 1.247330950103979</math> </big> works best, but <big> 1.3</big> may be more practical.
Some implementations use the insertion sort once the gap is less than a certain amount.
;Also see:
* the Wikipedia article: [[wp:Comb sort|Comb sort]].
* Combsort11 makes sure the gap ends in (11, 8, 6, 4, 3, 2, 1), which is significantly faster than the other two possible endings.
* Combsort with different endings changes to a more efficient sort when the data is almost sorted (when the gap is small). Comb sort with a low gap isn't much better than the Bubble Sort.