Create your first Pull Request 🔥(PR).
A month-long celebration from October 1st - 31st sponsored by Digital Ocean and GitHub to get people involved in Open Source. Create your very first pull request to any public repository on GitHub and contribute to the open source developer community.
https://hacktoberfest.digitalocean.com/
Choose one or all 3, make a pull request for your work and wait for it to be merged!
FOLLOWING WILL TELL YOU HOW TO GET YOUR AWESOME T-SHIRT
Here are quick and painless ways to contribute to this project:
- First Fork or click here.
- Create a simple "Hello, World" script in C++.
- Click on Add File button and select Create new file button.
- Fork this repository (Click the Fork button in the top right of this page, click your Profile Image)
- Clone your fork down to your local machine
git clone https://github.com/Souravrao-31/Data-Structure-Algorithms
- Create a branch
git checkout -b branch-name
- Make your changes (choose from any task below)
- Commit and push
git add .
git commit -m 'Commit message'
git push origin branch-name
- Add your name to the
CONTRIBUTORS.md
file
#### Name: [YOUR NAME](GitHub link)
- Place: City, State, Country
- Bio: Who are you?
- GitHub: [GitHub account name](GitHub link)
- Star this repository if you had fun!
- This is the collection of Algorithms, Data Structures and Interview Questions with solutions.
- This repository contains my solutions for common algorithmic problems and implementation of Data Structures in C++.
- I've created this repository to learn about algorithms.
- I have categorize all my algorithms in Data structure type.
- I am adding solutions continuously.
The repository is a collection of open-source implementation of a variety of programs and algorithms implemented in C++. basic programs and competitive programming codes both are welcomed to contribute here.
- The repository provides implementations of various algorithms in one of the most fundamental general purpose languages - C++.
- Well documented source code with detailed explanations provide a valuable resource for educators and students alike.
- Each source code is atomic using STL classes and no external libraries are required for their compilation and execution. Thus the fundamentals of the algorithms can be studied in much depth.
- Source codes are compiled and tested for every commit on the latest versions of three major operating systems viz., Windows, MacOS and Ubuntu (Linux) using MSVC 16 2019, AppleClang 11.0 and GNU 7.5.0 respectively.
- Strict adherence to C++11 standard ensures portability of code to embedded systems as well like ESP32, ARM Cortex, etc. with little to no changes.
- Self-checks within programs ensure correct implementations with confidence.
- Modular implementations and OpenSource licensing enable the functions to be utilized conveniently in other applications.