Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/stuymedova/common-sorting-and-searching-algorithms
[LEARNING] Annotated Quick sort, Merge sort, Binary search, and so on
https://github.com/stuymedova/common-sorting-and-searching-algorithms
computer-science interview-preparation searching-algorithms sorting-algorithms
Last synced: about 1 month ago
JSON representation
[LEARNING] Annotated Quick sort, Merge sort, Binary search, and so on
- Host: GitHub
- URL: https://github.com/stuymedova/common-sorting-and-searching-algorithms
- Owner: stuymedova
- Created: 2022-08-28T07:50:49.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-11-09T20:04:02.000Z (over 1 year ago)
- Last Synced: 2024-11-11T12:44:01.394Z (3 months ago)
- Topics: computer-science, interview-preparation, searching-algorithms, sorting-algorithms
- Language: JavaScript
- Homepage:
- Size: 17.6 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Common Sorting and Searching Algorithms
### Sorting Algorithms
- [Selection sort](./sorting-algorithms/selectionSort.js)
- [Insertion sort](./sorting-algorithms/insertionSort.js)
- [Bubble sort](./sorting-algorithms/bubbleSort.js)
- [Quick sort](./sorting-algorithms/quickSort.js)
- [Merge sort](./sorting-algorithms/mergeSort.js)### Searching Algorithms
- [Linear search](./searching-algorithms/linearSearch.js)
- [Binary search](./searching-algorithms/binarySearch.js)---
See also:
- [Common Data Structures](https://github.com/stuymedova/common-data-structures)
- [Common Design Patterns](https://github.com/stuymedova/common-design-patterns)