OSDN Git Service

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

index 0977508..010e884 100644 (file)
@@ -17,7 +17,7 @@
 
 ### 稳定性
 
-如果使用稳定的内层排序,并且将元素插入桶中时不改变相对顺序,那么桶排序就是一种稳定的排序算法。
+如果使用稳定的内层排序,并且将元素插入桶中时不改变元素间的相对顺序,那么桶排序就是一种稳定的排序算法。
 
 由于每块元素不多,一般使用插入排序。此时桶排序是一种稳定的排序算法。