Home

Awesome

Welcome to the NITSkmOS/Algorithms

NITSkmOS Algorithms Codacy Badge GitHub

This repository contains examples of various algorithms written on different programming languages...

Implemented Algorithms

AlgorithmCCPPJavaPython
Euclidean GCD:octocat:
QuickSort:octocat:
Merge Sort:octocat:
Insertion Sort:octocat::octocat::octocat:
Counting Sort:octocat:
Radix Sort:octocat:
Binary Search:octocat:
Bubble Sort:octocat:

Implemented Data Structures

Data StructureCCPPJavaPython
Queue:octocat:
Linear Linked List:octocat:

Sample Run

LanguageSteps
JavaScript<pre>node [filename.js]</pre>
Python<pre>python [filename.py]</pre>
C<pre>gcc [filename.c]<br>./a.out # unix<br>a.exe # windows</pre>
CPP<pre>g++ [filename.cpp]<br>./a.out # unix<br>a.exe # windows</pre>
Java<pre>javac [filename.java]<br>java [filename]</pre>

Contributing

  1. Fork it!

  2. Create your feature branch: git checkout -b my-new-feature

  3. Commit your changes: git commit -am 'Add some feature'.

    Go through Commit Messages guidelines

  4. Push to the branch: git push origin my-new-feature

  5. Submit a pull request :smile:

See CONTRIBUTING.md.

Notes

Only project maintainers should merge a PR. Other members can add their reviews to a PR but the merging should be done by only a project maintainer.