Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/stuymedova/common-data-structures
- Owner: stuymedova
- Created: 2022-08-28T07:55:54.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-08-10T06:04:33.000Z (over 1 year ago)
- Last Synced: 2024-11-11T12:44:01.082Z (2 months ago)
- Topics: computer-science, data-structures, interview-preparation
- Language: JavaScript
- Homepage:
- Size: 70.3 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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)