Skip to content

FernandoBoza/TypeScript-Data-Structures-and-Algorithms

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

65 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Since a lot of my projects are TypeScript based, I wanted to build my data structure and algorithm library.

Sources** This project is from my research from a variety of authors and instructors, some include Robert Sedgewick, Kevin Wayne, Aditya Bhargava

Looking to implement the majority of these algorithms as I progress

TypeScript Data Structures Algorithms

Sorting

  • Merge Sort: Top Down | Bottom Up
  • Quick Sort: Coming Soon, 2 , 3 way variant

Searching

  • Binary Search: Last index of T or -1

Data Structures

  • Binary Search Tree
  • Un/Weighted & Un/Directed Graphs: IP
  • Binary Heap
  • Stacks & Queues