Skip to content

Latest commit

 

History

History
24 lines (20 loc) · 487 Bytes

README.md

File metadata and controls

24 lines (20 loc) · 487 Bytes

Computer science

My hobby project for Computer Science practice.

Data structures

  • Binary search tree O(log(n))
  • Singly linked list O(n)
  • Stack O(1)
  • Queue Push O(n), Pop O(1)

Sorting algorithms

  • Merge sort O(n log(n))
  • Bubble sort O(n2)
  • Insertion sort O(n2)

Running

Git clone this repo, and install dependencies:

npm install

for running tests run:

npm test