This repository contains examples of various algorithms written on different programming languages...
Implemented Data Structures
| Language |
Steps |
| JavaScript |
node [filename.js] |
| Python |
python [filename.py] |
| C |
gcc [filename.c] ./a.out # unix a.exe # windows |
| CPP |
g++ [filename.cpp] ./a.out # unix a.exe # windows |
| Java |
javac [filename.java] java [filename] |
- Fork it!
- Clone the forked repository to local system.
- Create your feature branch:
git checkout -b my-new-feature
- Commit your changes:
git commit -am 'Add some feature'.
- Push to the branch:
git push origin my-new-feature
- Submit a pull request 😄