Ask your own question, for FREE!
Computer Science 9 Online
OpenStudy (anonymous):

im having trouble programming bubblesort in java. it only goes through the array once. help!

OpenStudy (anonymous):

public static int[] bubbleSort(int[] a){ int temp=0; boolean swapped=true; int num=a.length; int sorted=0; while(sorted<a.length){ while(swapped){ for(int i=0;i<num-1;i++){ if (a[i]>a[i+1]) { temp=a[i]; a[i]=a[i+1]; a[i+1]=temp; } else swapped=false; } num--;//invariant(?) and that numb is in place sorted++; } //num--; //sorted++; } return a; }

OpenStudy (rsmith6559):

Walk through your code with your test data, know what your variables are, and you'll see the problem in a couple of swaps.

Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!
Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!