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

https://github.com/dsomleff/data-structures-js

Data Structures & Algorithms in JS
https://github.com/dsomleff/data-structures-js

algorithms data-structures heap javascript linked-list queue stack tree-structure typescript unit-tests

Last synced: 5 days ago
JSON representation

Data Structures & Algorithms in JS

Awesome Lists containing this project

README

          

# Data Structures & Algorithms in JS

`courses` Code was created during the watching ['Data Structures & Algorithms - JavaScript
](https://www.udemy.com/course/data-structures-algorithms-javascript/) and
['coding-interview-bootcamp-algorithms-and-data-structure-journey'](https://www.udemy.com/course/coding-interview-bootcamp-algorithms-and-data-structure/)

Basically, there are two types of data structures :
1. Linear Data Structure — Array, Queue, Stack, Linked List, etc…
2. Non-linear Data Structure — Trees, Graphs, etc…
---
`my_own` code is created for more deep understanding of DS and Algorithms.