Cocktail Shaker Sort | Formatted Wikipedia Link

This commit is contained in:
marsonya
2020-11-02 15:24:09 +05:30
parent aad3c4d151
commit 5dbb739fd0

View File

@ -3,8 +3,9 @@
* The algorithm extends bubble sort by operating in two directions.
* While it improves on bubble sort by more quickly moving items to the beginning of the list,
* it provides only marginal performance improvements.
* more information: https://en.wikipedia.org/wiki/Cocktail_shaker_sort
* more information: https://en.wikipedia.org/wiki/Bubble_sort
*
* Wikipedia (Cocktail Shaker Sort): https://en.wikipedia.org/wiki/Cocktail_shaker_sort
* Wikipedia (Bubble Sort): https://en.wikipedia.org/wiki/Bubble_sort
*
*/
function cocktailShakerSort (items) {