(algorithm)
Definition: A variant of bubble sort that compares each adjacent pair of items in a list in turn, swapping them if necessary, and alternately passes through the list from the beginning to the end then from the end to the beginning. It stops when a pass does no swaps.
Also known as cocktail shaker sort, shaker sort, double-direction bubble sort.
Generalization (I am a kind of ...)
sort.
See also bubble sort, gnome sort.
Note: Complexity is O(n2) for arbitrary data, but approaches O(n) if the list is nearly in order at the beginning. Bidirectional bubble sort usually does better than bubble sort since at least one item is moved forward or backward to its place in the list with each pass. Bubble sort moves items forward into place, but can only move items backward one location each pass.
If you have suggestions, corrections, or comments, please get in touch with Paul E. Black.
Entry modified Wed Aug 24 10:22:12 2005.
HTML page formatted Wed Oct 26 09:47:14 2005.
Cite this as:
Paul E. Black and Bob Bockholt, "bidirectional bubble sort", from
Dictionary of Algorithms and Data
Structures, Paul E. Black, ed.,
NIST.
http://www.nist.gov/dads/HTML/bidirectionalBubbleSort.html