You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
go-algorithms/sorting/cocktail_sort.go

35 lines
476 B
Go

package main
/*
* Cocktail sort - https://en.wikipedia.org/wiki/Cocktail_sort
*/
func CocktailSort(arr []int) {
tmp := 0
for i := 0; i < len(arr)/2; i++ {
left := 0
right := len(arr) - 1
for left <= right {
if arr[left] > arr[left+1] {
tmp = arr[left]
arr[left] = arr[left+1]
arr[left+1] = tmp
}
left++
if arr[right-1] > arr[right] {
tmp = arr[right-1]
arr[right-1] = arr[right]
arr[right] = tmp
}
right--
}
}
}