https://github.com/clifftech123/data-structures-algorithms-in-typescript
Using TypeScript to solve LeetCode coding challenges.
https://github.com/clifftech123/data-structures-algorithms-in-typescript
Last synced: 8 months ago
JSON representation
Using TypeScript to solve LeetCode coding challenges.
- Host: GitHub
- URL: https://github.com/clifftech123/data-structures-algorithms-in-typescript
- Owner: Clifftech123
- Created: 2023-02-22T23:54:39.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-05-25T13:36:02.000Z (about 3 years ago)
- Last Synced: 2024-12-27T05:25:16.013Z (over 1 year ago)
- Language: TypeScript
- Homepage:
- Size: 40 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Data Structures & Algorithms in TypeScript
## Environment
- TypeScript 4.3.2
- Node.js 14.17.0
- ts-node 10.1.0
## Topics Overview
### Algorithmic Complexity Analysis
- [X] Big O Notation
- [X] Time Complexity
- [X] Space Complexity
### Data Structures
- [X] Trees
- [X] Graphs
- [X] Hash Tables
- [X] Linked Lists
- [X] Arrays/Stacks/Queues
### Algorithms
- [X] Comparison Sorting
- [X] *Merge Sort*
- [X] *Quicksort*
- [X] Searching
- [X] Linear & Binary Search
- [X] BFS & DFS
- [X] Recursion
- [X] Dynamic Programming
## Resources
- [Roadmap: Core Data Structures & Algorithms](https://coggle.it/diagram/W5E5tqYlrXvFJPsq/t/master-the-interview-click-here-for-course-link "Course and Mindmap by Andrei Neagoie")
- [The Big-O Algorithm Complexity Cheat Sheet](https://www.bigocheatsheet.com/ "Big O Cheat Sheet")
- [Algorithms & DS – Real Use Cases: PragmaticEngineer](https://blog.pragmaticengineer.com/data-structures-and-algorithms-i-actually-used-day-to-day/)