冒泡排序
2017-12-27 本文已影响7人
linbj
image.png
// 冒泡排序
for (int i = 0; i<arr.count; i++) {
for (int j = 0; j<arr.count - 1; j++) {
if (arr[j] > arr[j+1]) {
NSNumber *x = arr[j];
arr[j] = arr[j+1];
arr[j+1] = x;
}
}
}
image.png