package
0.0.0-20200223121827-10ffd4c65076
Repository: https://github.com/aquayi/go-notes.git
Documentation: pkg.go.dev

# README

选择排序

  1. 对n位的序列进行n-1次扫描。
  2. 在第i次扫描时,扫描后n-i个元素,找到其中最小的那个元素j,将i,j元素互换。

# Functions

Sort 选择排序实现的算法.