An open API service indexing awesome lists of open source software.

https://github.com/gustavoaroberto/data-structures-algorithms-js

A repository dedicated to the study and implementation of data structures and algorithms in JavaScript and TypeScript.
https://github.com/gustavoaroberto/data-structures-algorithms-js

algorithms-and-data-structures javascript studies-javascript typescript

Last synced: 2 months ago
JSON representation

A repository dedicated to the study and implementation of data structures and algorithms in JavaScript and TypeScript.

Awesome Lists containing this project

README

        

# Data Structures and Algorithms in JavaScript and TypeScript

This repository is dedicated to the study and implementation of data structures and algorithms using JavaScript and TypeScript. The goal is to create a collection of examples and exercises that can be used as a reference and practice for those who want to improve their skills in these languages.

## Topics

**Data Structures**

- Linked Lists ✅
- Stacks
- Queues
- Trees
- Graphs
- Sets
- Maps
- Hash Tables

**Algorithms**

- Sorting
- Bubble Sort
- Selection Sort
- Insertion Sort
- Merge Sort
- Quick Sort
- Heap Sort
- Searching
- Linear Search
- Binary Search
- Recursion
- Backtracking
- Dynamic Programming
- Greedy Algorithms
- Graph Algorithms
- Depth-First Search (DFS)
- Breadth-First Search (BFS)
- Dijkstra's Algorithm
- Kruskal's Algorithm
- Prim's Algorithm