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

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.

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
```