Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/wesleey/advanced-data-structures
Linked lists, Queues, Stacks, Trees, Graphs and Hash tables.
https://github.com/wesleey/advanced-data-structures
advanced-data-structures circular-doubly-linked-list circular-singly-linked-list data-structures doubly-linked-list linked-l singly-linked-list
Last synced: about 1 month ago
JSON representation
Linked lists, Queues, Stacks, Trees, Graphs and Hash tables.
- Host: GitHub
- URL: https://github.com/wesleey/advanced-data-structures
- Owner: wesleey
- Created: 2024-05-06T02:55:11.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2024-07-21T01:49:15.000Z (6 months ago)
- Last Synced: 2024-07-21T23:24:14.820Z (6 months ago)
- Topics: advanced-data-structures, circular-doubly-linked-list, circular-singly-linked-list, data-structures, doubly-linked-list, linked-l, singly-linked-list
- Language: C
- Homepage:
- Size: 11.7 KB
- Stars: 2
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Advanced Data Structures
## Linked List
- [Singly Linked List](./linked-list/singly-linked-list/)
- [Doubly Linked List](./linked-list/doubly-linked-list/)
- [Circular Singly Linked List](./linked-list/circular-singly-linked-list/)
- [Circular Doubly Linked List](./linked-list/circular-doubly-linked-list/)## Queue
- [Dynamic Queue](./queue/dynamic-queue/)## Stack
- [Dynamic Stack](./stack/dynamic-stack/)## Hash Table
- [Direct-addressing Hash Table](./hash-table/direct-addressing-hash-table/)
- [Open-addressing Hash Table](./hash-table/open-addressing-hash-table/)## Tree
- [Binary Tree](./tree/binary-tree/)