In this repository you can add all your programs and algorithms or Data Structures using any coding languages for Hacktoberfest
Algorithm | C | C++ | Java | Python | Rust |
---|---|---|---|---|---|
Binary Search | |||||
QuickSort | |||||
RadixSort | |||||
Breadth First Search | |||||
Bubble Sort | |||||
Merge Sort | |||||
Selection Sort | |||||
Insertion Sort |
Data Structure | C | C++ | Java | Python | Rust |
---|---|---|---|---|---|
Linear Linked List | |||||
Stack | |||||
Queue |
Language | Steps |
---|---|
Python | python [filename.py] |
C | gcc [filename.c] |
C++ | g++ [filename.cpp] |
Java | javac [filename.java] |
rust | rustc [filename.rs] |
- Fork it!
- Clone the forked repository to local system.
- Please add the code to the according folder and if needed create the folder for the algorithm or DS and create the folder for programming language you are using(An example is Algorithms/quicksort/C/'filename'.c).
- Track the changes:
git add .
- Commit your changes:
git commit -m 'Added some feature
- Push to the branch:
git push origin master
- Submit a pull request 😄