Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jubayer98/data-structures-basic-problems
Here are solutions to some basic data structure problems implemented in C++.
https://github.com/jubayer98/data-structures-basic-problems
basic-programming cpp data-structures
Last synced: 15 days ago
JSON representation
Here are solutions to some basic data structure problems implemented in C++.
- Host: GitHub
- URL: https://github.com/jubayer98/data-structures-basic-problems
- Owner: jubayer98
- License: mit
- Created: 2018-05-21T11:57:36.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2024-08-03T11:32:59.000Z (6 months ago)
- Last Synced: 2024-11-12T17:08:10.919Z (2 months ago)
- Topics: basic-programming, cpp, data-structures
- Language: C++
- Homepage:
- Size: 1.87 MB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Data Structures Basic Problems in C++
This repository contains solutions to various basic data structure problems implemented in C++. These solutions are designed to help understand the fundamental concepts and operations related to different data structures.
### Prerequisites
To compile and run the programs, you need to have a C++ compiler installed on your system. For example, you can use `g++`, which is part of the GNU Compiler Collection (GCC).### Running the Programs
1. Clone this repository:
```bash
git clone https://github.com/jubayer98/Data-Structures-Basic-Problems.git
cd Data-Structures-Basic-Problems
```2. Compile the desired program:
```bash
g++ -o output_file source_file.cpp
```3. Run the compiled program:
```bash
./output_file
```## Contributing
Contributions are welcome! If you have any improvements or additional problems and solutions, feel free to open an issue or submit a pull request.---
Happy coding! Enjoy solving data structure problems and enhancing your C++ skills!