I just wrote a bubble sorting algorithm, I found that now is very fragmented on the algorithm. You are welcome to discuss this algorithm requires improvement.
^ _ ^ Although it is very common algorithm, I also hope that everyone will give me
/// /// bubbling sorting method, sequential arrangement /// summary> /// param> private int [] bubblesort (int [] arr) {INT i , J, TMP; for (i = 0; I arr [j] ) {TMP = arr [i]; arr [i] = arr [j]; arr [j] = TMP;}}} return