Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/joakimteixeira/data-structure-exercises
Common data structures written in C.
https://github.com/joakimteixeira/data-structure-exercises
c data-structures dynamic-memory-allocation pointers
Last synced: about 2 months ago
JSON representation
Common data structures written in C.
- Host: GitHub
- URL: https://github.com/joakimteixeira/data-structure-exercises
- Owner: JoakimTeixeira
- Created: 2020-07-17T21:48:17.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2024-11-07T19:32:59.000Z (about 2 months ago)
- Last Synced: 2024-11-07T20:31:54.773Z (about 2 months ago)
- Topics: c, data-structures, dynamic-memory-allocation, pointers
- Language: C
- Homepage:
- Size: 7.81 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Data Structure Exercises
Common data structures written in C.
## Running the Project
To get started, fork the repository, clone it, and then follow one of the two instructions below:
### With Visual Studio Code:
1. Install [Visual Studio Code](https://code.visualstudio.com/Download) (text editor)
2. Install the [plugin](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools) for C/C++
3. Open the text editor and import the project folder with the menu `File > Open Folder`
4. Select the C/C++ file you want to compile
5. Press `Ctrl + Shift + B` or menu `Terminal > Run Build Task` to compile it
6. Go to the text editor's terminal and open the file by typing: `./my-file-name`### With IDE:
1. Open the project folder in your favorite IDE (Integrated Development Environment)
2. Select the C/C++ file you want to compile
3. Run the file selecting your IDE compiling option