My hobby project for Computer Science practice.
- Binary search tree O(log(n))
- Singly linked list O(n)
- Stack O(1)
- Queue Push O(n), Pop O(1)
- Merge sort O(n log(n))
- Bubble sort O(n2)
- Insertion sort O(n2)
Git clone this repo, and install dependencies:
npm install
for running tests run:
npm test