Indrajeet Nikam

Indrajeet Nikam

I am tech enthusiast with love for web development ❤

Stack

Stack Data Structure Image
Stack is a very simple data structure with predefined size which allows inserting or removing elements in a particular order.
Read more...

Merge Sort

Merge Sort
A Divide and Conquer algorithm that divides the list in two sub-lists and calls itself onto them recursively till it can't be split and merges them afterwards in a sorted manner.
Read more...

Bubble Sort

Bubble Sort
An in-place sorting algorithm that finds max. element in each cycle and puts it in appropriate position in list by performing swapping adjacent elements.
Read more...