A simple sorting technique that scans the sorted list, starting at the beginning, for the correct insertion point for each of the items from the unsorted list… Read more »
INtroduction
- Quick Sort Definition
 A popular sorting algorithm that picks an element from the list, and reorder the list so that all elements which are less than the chosen element come before the chosen element. 
 
- Divide and Conquer:
-  (1) Divide the input instance into several instances of the same problem of
 smaller size.
- (2) Recursively solve the problem on these smaller instances.
- (3) Combine the solutions for the smaller instances to a solution for the original instance (so after the recursive calls, we do some “extra work” to find the solution for our original instance).
- 
            
            Quicksort Technique:Given an array of n elements 

pick one element to use as pivot.

Partition elements into two sub-arrays, Elements less than or equal to pivot
Elements greater than pivot


Sorting by MS.K.Abirami
- 
	BUBBLE SORTBubble sort is a sorting algorithm that works by repeatedly stepping through lists that need to be sorted, comparing each pair of adjacent items and swapping them ...Read more » 
- 
	INSERTION SORTSELECTION SORTIt starts by comparing the entire list for the lowest item and moves it to the #1 position. It then compares the rest of the list for the next-lowest item....Read more » QUICK SORTA sorting technique that sequences a list by continuously dividing the list into two parts and moving the lower items to one side and the higher items to the other. … Read more » BUBBLE SORTThe number of comparison between elements and the number of exchange between elements determine the efficiency of Bubble Sort algorithm.Read more » Insertion SORTInsertion sort is also a time taking technique as its complexity is O(n2)Read more » selection SORTThe number of comparison between elements and the number of exchange between elements determine the efficiency of Bubble Sort algorithm.Read more » quick SORTThe efficeieny of the quicksort depends on the pivot element. However the pivot element can also be choosen at random order or from the last element of the array