Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

[pull] main from itcharge:main #30

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
pull merged 13 commits into AlgorithmAndLeetCode:main from itcharge:main
Aug 18, 2022
Merged
Changes from 1 commit
Commits
Show all changes
13 commits
Select commit Hold shift + click to select a range
c0a1d18
Update 02.Array-Selection-Sort.md
itcharge Aug 17, 2022
7a2e11f
Update 03.Array-Insertion-Sort.md
itcharge Aug 17, 2022
0215d09
Update 04.Array-Shell-Sort.md
itcharge Aug 17, 2022
615cf10
Update 06.Array-Quick-Sort.md
itcharge Aug 17, 2022
308148a
Merge branch 'main' of https://github.com/itcharge/LeetCode-Py
itcharge Aug 18, 2022
8ac0095
Update 09.Array-Bucket-Sort.md
itcharge Aug 18, 2022
f08b806
Update 09.Array-Bucket-Sort.md
itcharge Aug 18, 2022
af0b03c
Update 10.Array-Radix-Sort.md
itcharge Aug 18, 2022
c33adf0
Update 07.Array-Heap-Sort.md
itcharge Aug 18, 2022
5d4d642
更新题解列表
itcharge Aug 18, 2022
01a67f9
Update 06.Array-Quick-Sort.md
itcharge Aug 18, 2022
e78071c
Update 10.Array-Radix-Sort.md
itcharge Aug 18, 2022
4f75179
更新代码模板
itcharge Aug 18, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update 09.Array-Bucket-Sort.md
  • Loading branch information
itcharge committed Aug 18, 2022
commit f08b80625fa7bfdc80574cccc88b07ee99f9b4eb
2 changes: 1 addition & 1 deletion Contents/01.Array/02.Array-Sort/09.Array-Bucket-Sort.md
View file Open in desktop
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

1. 根据原始数组的值域范围,将数组划分为 `k` 个相同大小的子区间,每个区间称为一个桶。
2. 遍历原始数组元素,将每个元素装入对应区间的桶中。
3. 对每个桶内的元素单独排序(使用插入、归并、快排等算法)。
3. 对每个桶内的元素单独排序(使用插入排序、归并排序、快排排序等算法)。
4. 最后按照区间顺序将桶内的元素合并起来,完成排序。

## 3. 桶排序图解演示
Expand Down

AltStyle によって変換されたページ (->オリジナル) /