https://github.com/jurplel/datastruct
https://github.com/jurplel/datastruct
Last synced: 9 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/jurplel/datastruct
- Owner: jurplel
- License: mit
- Created: 2020-09-30T17:03:13.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-12-09T18:07:24.000Z (about 5 years ago)
- Last Synced: 2025-02-06T06:48:23.383Z (11 months ago)
- Language: C++
- Size: 196 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# DataStruct
This is a repository containing my assignments for CIT245 Data Structures
## Team Optimizer
This is a tool that allows you to optimize a game development team based on years of experience and manual preferences.
## Data Model
This tool creates a vector of USB Device and times various sorting algorithms sorting the vector.
## Tree Model
This is a binary tree that holds the masses of celestial bodies. It has deleting, inserting, and printing capabilities.
## Search Tree
This project creates a universe with many planet objects, each of which have characteristics. The scenario then navigates through a search tree of the planets, searching for a planet that has desirable characteristics.
This search tree has some issues with memory management, never goes up through the tree, and does not store the result in a vector of SearchTreeNode objects as it should.