AnirudhDaya / DSA-in-Cplusplus

A repository for data structures and algorithms coded in c++

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

DSA-in-Cplusplus

A repository for data structures and algorithms coded in c++

Prerequisites

Make sure you have the latest version of GCC . Click here to install latest version for windows and here for linux

Running the program

Select any file from the folder and copy the code to any text editor of your choice and save the file in ".cpp" format.

For Windows

Open command prompt and navigate to the location where you saved the file and now run the following commands

To compile

gcc file-name.cpp -o file-name   //here file-name is a your desired name 

To run

file-name   //here file-name is a your desired name 

For Linux

Open terminal and navigate to the location where you saved the file and now run the following commands

To compile

gcc file-name.cpp    //here file-name is a your desired name 

To run

./a.out

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change. Skip the hassle, use gitpod Open in Gitpod

Please make sure to update tests as appropriate.

License

MIT

About

A repository for data structures and algorithms coded in c++


Languages

Language:C++ 100.0%