Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hayd1n/cs2002302-data-structure
112.1【資工系】CS2002302 資料結構、【電資學士班】EC2002302 資料結構
https://github.com/hayd1n/cs2002302-data-structure
ntust
Last synced: 1 day ago
JSON representation
112.1【資工系】CS2002302 資料結構、【電資學士班】EC2002302 資料結構
- Host: GitHub
- URL: https://github.com/hayd1n/cs2002302-data-structure
- Owner: hayd1n
- Created: 2023-09-13T15:42:17.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2023-12-22T11:07:10.000Z (11 months ago)
- Last Synced: 2024-08-15T09:54:15.758Z (3 months ago)
- Topics: ntust
- Language: C++
- Homepage:
- Size: 19.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# CS2002302-Data-Structure
## Build
Use `clang` or `gcc` to build c++ code.
```bash
clang++ ./main.cpp -std=c++11 -o ./main
```### Build multiple files to single cpp file
Use [cg-singlefile-for-cpp](https://github.com/aangairbender/cg-singlefile-for-cpp) to build multiple cpp files to single file.
```bash
cg-singlefile-for-cpp "main.cpp" -o "bundled.cpp"
```