Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/stuymedova/common-data-structures

[LEARNING] Annotated Linked Lists, Hash Tables, and so on
https://github.com/stuymedova/common-data-structures

computer-science data-structures interview-preparation

Last synced: 15 days ago
JSON representation

[LEARNING] Annotated Linked Lists, Hash Tables, and so on

Awesome Lists containing this project

README

        

# Common Data Structures

- [Singly-Linked List](./data-structures/SinglyLinkedList.js)
- [Doubly-Linked List](./data-structures/DoublyLinkedList.js)
- [Stack](./data-structures/Stack.js)
- [Queue](./data-structures/Queue.js)
- [Hash Table](./data-structures/HashTable.js)
- [Tree](./data-structures/Tree.js)
- [Binary Search Tree](./data-structures/BinarySearchTree.js)
- [Graph](./data-structures/Graph.js)
- [Trie](./data-structures/Trie.js)
- [Binary Min Heap](./data-structures/BinaryMinHeap.js)

---

See also:
- [Common Design Patterns](https://github.com/stuymedova/common-design-patterns)
- [Common Sorting and Searching Algorithms](https://github.com/stuymedova/common-sorting-and-searching-algorithms)