https://github.com/javiermruelas/sorting
Sorting algorithms written in TypeScript.
https://github.com/javiermruelas/sorting
sorting-algorithms sorting-algorithms-implemented typescript unit-testing
Last synced: 7 months ago
JSON representation
Sorting algorithms written in TypeScript.
- Host: GitHub
- URL: https://github.com/javiermruelas/sorting
- Owner: javiermruelas
- Created: 2025-03-12T01:57:38.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2025-03-12T02:20:04.000Z (7 months ago)
- Last Synced: 2025-03-12T03:20:12.531Z (7 months ago)
- Topics: sorting-algorithms, sorting-algorithms-implemented, typescript, unit-testing
- Language: TypeScript
- Homepage:
- Size: 41 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# Sorting Algorithms
This repository holds all of my implementations for well known sorting algorithms as part of my computer science studies. All implementations were done in TypeScript.
## Resources
- [Sorting Algorithm Visualizations](https://visualgo.net/en/sorting)
## Algorithms Implemented
- [x] Bubble Sort
- [ ] Selection Sort
- [ ] Insertion Sort
- [ ] Merge Sort
- [ ] Quick Sort
- [ ] Random Quick Sort
- [ ] Counting Sort
- [ ] Bucket Sort
- [ ] Radix Sort## Setup
```sh
npm install
npm run dev
```## Testing
```sh
npm run test
```