Skip to content

Latest commit

 

History

History
42 lines (34 loc) · 4.1 KB

README.md

File metadata and controls

42 lines (34 loc) · 4.1 KB

All_Programs_and_algorithms

In this repository you can add all your programs and algorithms or Data Structures using any coding languages for Hacktoberfest

Implemented Programs and Algorithms

Algorithm C C++ Java Python Rust
Binary Search :octocat: :octocat:
QuickSort :octocat: :octocat:
RadixSort :octocat:
Breadth First Search :octocat:
Bubble Sort :octocat: :octocat:
Merge Sort :octocat:
Selection Sort :octocat:

Implemented Data Structures

Data Structure C C++ Java Python Rust
Linear Linked List :octocat: :octocat: :octocat:
Stack :octocat: :octocat:
Queue :octocat: :octocat:

Sample Run

Language Steps
Python
python [filename.py]
C
gcc [filename.c]
./a.out # unix
a.exe # windows
C++
g++ [filename.cpp]
./a.out # unix
a.exe # windows
Java
javac [filename.java]
java [filename]
rust
rustc [filename.rs]
./[filename]

Contributing

  1. Fork it!
  2. Clone the forked repository to local system.
  3. 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).
  4. Track the changes: git add .
  5. Commit your changes: git commit -m 'Added some feature
  6. Push to the branch: git push origin master
  7. Submit a pull request 😄