This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package program; | |
public class CocktailSort { | |
public static void cocktailSort(int[] array) { | |
int temp; | |
int left = 0; | |
int right = array.length - 1; | |
do { | |
for(int i = left; i < right; i++) { |