Skip to content
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

fix readme in basic #1151

Merged
merged 1 commit into from
Jul 6, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
1 change: 1 addition & 0 deletions basic/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

- [冒泡排序](/basic/sorting/BubbleSort/README.md)
- [插入排序](/basic/sorting/InsertionSort/README.md)
- [希尔排序](/basic/sorting/ShellSort/README.md)
- [选择排序](/basic/sorting/SelectionSort/README.md)
- [归并排序](/basic/sorting/MergeSort/README.md)
- [快速排序](/basic/sorting/QuickSort/README.md)
Expand Down
3 changes: 2 additions & 1 deletion basic/README_EN.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,12 @@

- [Bubble Sort](/basic/sorting/BubbleSort/README.md)
- [Insertion Sort](/basic/sorting/InsertionSort/README.md)
- [Shell Sort](/basic/sorting/ShellSort/README.md)
- [Selection Sort](/basic/sorting/SelectionSort/README.md)
- [Merge Sort](/basic/sorting/MergeSort/README.md)
- [Quick Sort](/basic/sorting/QuickSort/README.md)
- [Shell Sort](/basic/sorting/ShellSort/README.md)
- [Heap Sort](/basic/sorting/HeapSort/README.md)
- [Counting Sort](/basic/sorting/CountingSort/README.md)

## Searching

Expand Down
2 changes: 2 additions & 0 deletions basic/summary.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,11 @@
- 排序算法
- [冒泡排序](/basic/sorting/BubbleSort/README.md)
- [插入排序](/basic/sorting/InsertionSort/README.md)
- [希尔排序](/basic/sorting/ShellSort/README.md)
- [选择排序](/basic/sorting/SelectionSort/README.md)
- [归并排序](/basic/sorting/MergeSort/README.md)
- [快速排序](/basic/sorting/QuickSort/README.md)
- [堆排序](/basic/sorting/HeapSort/README.md)
- [计数排序](/basic/sorting/CountingSort/README.md)
- 查找算法
- [二分查找](/basic/searching/BinarySearch/README.md)