DSA/docs/en/README.md

24 lines
519 B
Markdown
Raw Normal View History

# Algorithms
2021-08-30 12:54:10 +00:00
2021-04-24 23:39:38 +00:00
## Sorting
2021-08-30 12:54:10 +00:00
2021-06-08 14:41:14 +00:00
- [Bubble Sort](./Sorting/Bubble-Sort.md)
2021-04-24 23:39:38 +00:00
- [Merge Sort](./Sorting/Merge-Sort.md)
- [Selection Sort](./Sorting/Selection-Sort.md)
2021-08-30 12:54:10 +00:00
- [Insertion Sort](./Sorting/Insertion-Sort.md)
- [Heap Sort](./Sorting/Heap-Sort.md)
2021-09-22 19:44:44 +00:00
- [Quick Sort](./Sorting/Quick-Sort.md)
## Strings
2021-08-30 12:54:10 +00:00
- [Palindrome](./Strings/Palindrome.md)
2021-08-30 12:54:10 +00:00
## Searching
2021-06-24 16:37:55 +00:00
- [Binary Search](./Searching/Binary-Search.MD)
2021-10-01 18:28:22 +00:00
- [Linear Search](./Searching/Linear-Search.md)
2021-06-24 16:37:55 +00:00
## Others
2021-08-30 12:54:10 +00:00
2021-05-08 00:09:31 +00:00
[How to add new algorithm documentation?](./CONTRIBUTING.md)