Skip to content

warned101/SortingArray

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 

Repository files navigation

SortingArray

#QuickSort The quick sort algorithm is a sorting algorithm based on divide and conquer technique. It sorts the array by taking an element as pivot element from the array and then comparing this element with other elements using a PARTITION function.

#BubbleSort This algorithm is one of the simplest algorithm available for sorting. In this algorithm the current element of array is compared with the next element of the array and if the next element is found to be small then it is swapped.

#MergeSort This is a sorting algorithm and is based on divide and conquer technique. It sorts the array by dividing it in 2 subarrays, sorting them and then combining them again to get the sorted array.

About

No description or website provided.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages