https://github.com/giorgiogamba/datastructures_cplusplus
Some data structures created from scratch, written in c++ and VIM
https://github.com/giorgiogamba/datastructures_cplusplus
Last synced: 3 months ago
JSON representation
Some data structures created from scratch, written in c++ and VIM
- Host: GitHub
- URL: https://github.com/giorgiogamba/datastructures_cplusplus
- Owner: giorgiogamba
- License: gpl-3.0
- Created: 2025-02-21T18:53:28.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2025-02-21T19:00:05.000Z (4 months ago)
- Last Synced: 2025-02-21T19:39:43.690Z (4 months ago)
- Language: C++
- Size: 0 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# datastructures_cplusplus
Some data structures created from scratch, written in c++ and VIM# Objectives
This repository has two main objectives:
1. Learn how really datastructures work and improve my low-level knowledge of design
2. Learn how to use VIM properly and C++ in the most efficient way# Test
I would like to test my implementations by using the real built-in language structures and see if they behave in the same way, maybe also by measuring the real time required to perform operations and mybe discover something new about them# Execution
By now there's not amek file to properly compile all the files together.Since there's only a main function inside the map_test.cpp file by now, you can singularly compile the files by using
`g++ -c linkedList.cpp`, `g++ -c map.cpp` and then use `g++ map_test.cpp -o test.out`# Contributing
Feel free to join! I would be nice to understand how to improve the implementations :)