Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hun756/hybble
Data Structures with basically C++ OOP concepts. Containers are handled as in STL.
https://github.com/hun756/hybble
beginner-friendly cpp cpp-course cpp-library cpp17 data-structures
Last synced: 8 days ago
JSON representation
Data Structures with basically C++ OOP concepts. Containers are handled as in STL.
- Host: GitHub
- URL: https://github.com/hun756/hybble
- Owner: hun756
- License: mit
- Created: 2020-10-22T17:27:19.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2024-03-15T19:45:53.000Z (8 months ago)
- Last Synced: 2024-03-16T22:45:11.344Z (8 months ago)
- Topics: beginner-friendly, cpp, cpp-course, cpp-library, cpp17, data-structures
- Language: C++
- Homepage:
- Size: 108 KB
- Stars: 6
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Data-Sutructures-in-CPlusPlus
Data Structures with basically C++ OOP concepts. Containers are handled as in STL.
## İnstallation
Requirements :
- CMake
- MinGW CompilerInstallation steps:
- Step 1 : Clone this repository..!
```sh
git clone https://github.com/hun756/Data-Sutructures-in-CPlusPlus.git
```- Step 2 (Optional) : Use This CMake Configurations
```
.
├── include
│ ├── array.hpp
│ └── . . .
├── src
│ ├── array.cpp
│ └── . . .
├── resources
│ ├── addyourresource.cpp
│ └── addyourcodefiles.cpp
``````cmake
set(PROJECT_RESOURCES# . . .
${PROJECT_RESOURCES_DIR}/addyourresource.cpp
${PROJECT_RESOURCES_DIR}/addyourcodefiles.cpp
)
```- Step 2 : Configure your Cmake
- Copy include and src directories to your project.
- Add the following Cmake configuration.```cmake
# ...set(DS_INCLUDE_DIR ${PROJECT_DIR}/include)
# ...
include_directories(${DS_INCLUDE_DIR})
```- Step 3 : Build
Run this code :
```sh
mkdir build
cd build
cmake .. -G "MinGW Makefiles"
```- Step 3 : Run
Run this code :
```sh
mingw32-make
```## Containers
- Array
- TArray (Vector)
- Lists
- Deque
- Queues
- Stack
- Binary Search Tree
- AVL Tree
- Read Black Tree
- HashMap
- Unordered Map
- Unordered Set
- Ordered Map
- Ordered Set## License
* * *MIT License