https://github.com/karenina-na/data-structure-experiments
西北工业大学(NWPU)数据结构实验
https://github.com/karenina-na/data-structure-experiments
c cpp data-structures-and-algorithms
Last synced: 8 months ago
JSON representation
西北工业大学(NWPU)数据结构实验
- Host: GitHub
- URL: https://github.com/karenina-na/data-structure-experiments
- Owner: Karenina-na
- License: mit
- Created: 2023-04-10T14:41:08.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-06-04T07:09:58.000Z (over 2 years ago)
- Last Synced: 2025-01-21T13:26:49.452Z (10 months ago)
- Topics: c, cpp, data-structures-and-algorithms
- Language: C++
- Homepage:
- Size: 140 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Data-structure-experiments
## NWPU data structure experiment
## Environment
- Windows 10
- MinGW-w64
- CMake 3.25.3
- GCC 12.2.0
- G++ 12.2.0
- GDB 12.1
- CLion 2023.1
## Change Function
if you want to change the function, you can change the `main.cpp` file.
## Notice
The project directory should not contain chinese characters.
## run
compile
```shell
cmake -DCMAKE_BUILD_TYPE=Debug -G "CodeBlocks - MinGW Makefiles" -S . -B ./cmake-build-debug-mingw
```
build
```shell
cmake --build ./cmake-build-debug-mingw --target Data_structure_experiments -- -j 14
```
run
```shell
./bin/Data_structure_experiments.exe
```