Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 671 Bytes

选择排序.md

File metadata and controls

31 lines (22 loc) · 671 Bytes

思想

每次循环选取一个最小的数字放到前面的有序序列中。

解法

    function selectionSort(array) {
      for (let i = 0; i < array.length; i++) {
        let minIndex = i;
        for (let j = i + 1; j < array.length; j++) {
          if (array[j] < array[minIndex]) {
            minIndex = j;
          }
        }
        [array[minIndex], array[i]] = [array[i], array[minIndex]];
      }
    }

复杂度

时间复杂度:O(n2)

空间复杂度:O(1)

稳定性

稳定