Skip to content

NITSkmOS/Algorithms

This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

590cd8e Â· Oct 6, 2018

History

89 Commits
Sep 30, 2018
Oct 2, 2018
Oct 3, 2018
Oct 2, 2018
Oct 4, 2018
Oct 1, 2018
Oct 2, 2018
Oct 6, 2018
Oct 2, 2018
Oct 2, 2018
Oct 3, 2018
Sep 13, 2018
Oct 2, 2018
Sep 13, 2018
Oct 1, 2018
Oct 3, 2018
Oct 2, 2018
Oct 2, 2018
Oct 2, 2018
Oct 1, 2018
Oct 2, 2018
Oct 1, 2018
Oct 1, 2018
Oct 2, 2018
Sep 12, 2018
Oct 4, 2018
Sep 12, 2018
Oct 2, 2018
Oct 2, 2018
Oct 2, 2018

Repository files navigation

Welcome to the NITSkmOS/Algorithms

Gitter NITSkmOS Algorithms Build Status GitHub

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

Implemented Algorithms

Algorithm C CPP Java Python
Euclidean GCD :octocat: :octocat: :octocat:
QuickSort :octocat:
Merge Sort :octocat:
Insertion Sort :octocat: :octocat: :octocat:
Counting Sort :octocat:
Radix Sort :octocat:
Binary Search :octocat: :octocat:
Bubble Sort :octocat: :octocat:
Shell Sort :octocat: :octocat:
Heap Sort :octocat:

Implemented Data Structures

Data Structure C CPP Java Python
Queue :octocat:
Stack :octocat: :octocat:
Linear Linked List :octocat: :octocat:
AVL Tree :octocat: :octocat: :octocat:

Sample Run

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]

Contributing

  1. Fork it!

  2. Clone the forked repository to local system.

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

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

    Go through Commit Messages guidelines

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

  6. Submit a pull request 😄

See CONTRIBUTING.md.

Support

Feel free to contact us at our Gitter channel, we'd be happy to help!

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.