Skip to content

Collection of classic computer science algorithms and paradigms written in TypeScript.

License

Notifications You must be signed in to change notification settings

lacour-vincent/computer-science

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

25 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Computer Science in TypeScript

Collection of classic computer science algorithms and paradigms written in TypeScript.

Sorting

Name Best Average Worst Memory Stable
Bubble n n^2 n^2 1
Selection n^2 n^2 n^2 1
Insertion n n^2 n^2 1
Merge n log(n) n log(n) n log(n) n
Quick n log(n) n log(n) n^2 log(n)
Heap n log(n) n log(n) n log(n) 1

Data structure

Linked List

Doubly Linked List

Stack

Queue

Heap

Binary Search Tree

Graph

Algorithms

  • Binary Search

References

Licence

MIT

About

Collection of classic computer science algorithms and paradigms written in TypeScript.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published