Java 冒泡排序算法实现详解
public class BubbleSort { public static void sort(int[] arr) { int n = arr.length; for (int i = 0; i < n - 1; i++) { for (int j = 0; j < n - 1 - i; j++) { if (arr[j] > arr[j + 1]) { int temp = arr[j]; arr[j] = arr[j + 1]; arr[j + 1] = temp; } } } } }
原文地址: https://www.cveoy.top/t/topic/nsDX 著作权归作者所有。请勿转载和采集!