https://github.com/kadirgonen/data-structures
https://github.com/kadirgonen/data-structures
arrays data-structures golang graphs hashtable linked-list queque stack tree
Last synced: 12 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/kadirgonen/data-structures
- Owner: kadirgonen
- License: mit
- Created: 2022-05-29T08:23:05.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2022-07-10T20:50:03.000Z (over 3 years ago)
- Last Synced: 2025-02-08T07:28:30.427Z (about 1 year ago)
- Topics: arrays, data-structures, golang, graphs, hashtable, linked-list, queque, stack, tree
- Language: Go
- Homepage:
- Size: 698 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# data-structures
Basically, data structures and recursions will be covered. In order to understand the logic of the algorithm, the appropriate data structure should be selected. Therefore, before starting to work on algorithms, it is important to gain a base in data structures.
**Basic Data Structures**
- [ ] Arrays
- [ ] Stacks
- [ ] Queues
- [ ] Linked Lists
- [ ] Trees
- [ ] Hash Tables (Hash Tables)
- [ ] Binary Tree
- [ ] Red-Black Tree
- [ ] Extending Data Structures
**Recursions**
- [ ] Calculation of Fibonacci Numbers
- [ ] Examples