Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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 資料結構

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"
```