Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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)