OSDN Git Service

Update docs/basic/bucket-sort.md
authormgt <mgt@oi-wiki.org>
Sun, 27 Sep 2020 01:44:37 +0000 (09:44 +0800)
committerGitHub <noreply@github.com>
Sun, 27 Sep 2020 01:44:37 +0000 (09:44 +0800)
Co-authored-by: Marcythm <36555123+Marcythm@users.noreply.github.com>
docs/basic/bucket-sort.md

index 010e884..1d6a177 100644 (file)
@@ -9,7 +9,7 @@
 桶排序按下列步骤进行:
 
 1. 设置一个定量的数组当作空桶;
-2. 寻访序列,并且把元素一个一个放到对应的桶中;
+2. 遍历序列,并将元素一个个放到对应的桶中;
 3. 对每个不是空的桶进行排序;
 4. 从不是空的桶里把元素再放回原来的序列中。