/All_Programs_and_algorithms

In this repository, you can add all your programs and algorithm using any coding languages

Primary LanguageC++

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 Clojure
Binary Search :octocat: :octocat:
QuickSort :octocat: :octocat: :octocat:
RadixSort :octocat:
Breadth First Search :octocat:
Bubble Sort :octocat: :octocat: :octocat: :octocat:
Merge Sort :octocat: :octocat:
Selection Sort :octocat:
Insertion Sort :octocat:

Implemented Data Structures

Data Structure C C++ Java Python Rust Clojure
Linear Linked List :octocat: :octocat: :octocat:
Stack :octocat: :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]
Clojure
lein run

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 😄