选择排序(java实现) TrueDei 2022-02-27 78 阅读1分钟 伪代码 SELECTION-SORT(A) n = A.length for j = 1 to n - 1 smallest = j for i = j + 1 to n if A[i] < A[smallest