• Stars
    star
    278
  • Rank 147,914 (Top 3 %)
  • Language
    TypeScript
  • Created about 4 years ago
  • Updated about 3 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Data structures & algorithms implemented in TypeScript

Data Structures & Algorithms in TypeScript

Environment

  • Deno 1.12.0
  • V8 9.2.230.14
  • TypeScript 4.3.2

Topics Overview

Algorithmic Complexity Analysis

  • Big O Notation
    • Time Complexity
    • Space Complexity

Data Structures

  • Trees
  • Graphs
  • Hash Tables
  • Linked Lists
  • Arrays/Stacks/Queues

Algorithms

  • Comparison Sorting
    • Merge Sort
    • Quicksort
  • Searching
    • Linear & Binary Search
    • BFS & DFS
  • Recursion
  • Dynamic Programming

Resources