Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/diiego-h/datastructures
University project: Implementation & usage of data structures
https://github.com/diiego-h/datastructures
Last synced: 11 days ago
JSON representation
University project: Implementation & usage of data structures
- Host: GitHub
- URL: https://github.com/diiego-h/datastructures
- Owner: Diiego-H
- License: mit
- Created: 2024-12-18T12:26:38.000Z (22 days ago)
- Default Branch: main
- Last Pushed: 2024-12-18T12:50:14.000Z (22 days ago)
- Last Synced: 2024-12-18T13:31:40.791Z (22 days ago)
- Language: C++
- Size: 1.27 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# DataStructures
University project: Implementation & usage of data structures in C++.## Summary
This repository is a collection of different coding exercises to understand the concept behind both linear and non-linear data structures. `Stack` uses the `Vector` class but all the others use custom `Node` objects and memory allocation for the implementation. For all of them, a `main` code is attached to solve some small problem with a view to show how the implemented classes are used.