Hello Everyone Today I am going to show you how to write QuickSort Algorithm in Javascript.
QuickSort is a Divide and Conquer algorithm. It picks an element as pivot and partitions the given array around the picked pivot. There are many different versions of quickSort that pick pivot in different ways.
Always pick first element as pivot.
Always pick last element as pivot (implemented below)
Pick a random element as pivot.
Pick median as pivot.
The key process in quickSort is partition(). Target of partitions is, given an array and an element x of array as pivot, put x at its correct position in sorted array and put all smaller elements (smaller than x) before x, and put all greater elements (greater than x) after x. All this should be done in linear time.
Here is The Code Part -
function QuickSort(Arr){
if(Arr.length <= 1){
return Arr;
}
const pivot = Arr[Arr.length - 1];
const leftArr = [];
const rightArr = [];
for(let i=0; i < Arr.length-1;i++){
Arr[i] < pivot ? leftArr.push(Arr[i]) : rightArr.push(Arr[i])
}
return [...QuickSort(leftArr) ,pivot,...QuickSort(rightArr)];
}
const items = [1,5,2,99,81,100,144,121,91,85,74,10];
console.log(QuickSort(items));
- So, First we will check the length of the Array and if it is 1 then we will return the array as it is.
- Then we will select a pivot element which is last element in our case.
- Then we will create two empty arrays leftarr and rightarr to compare elements with pivot and place the element accodingly.
- Then we will iterate the array using for loop and inside for loop we will check each element that it is smaller than pivot or greater than pivot
- If the Element is smaller than pivot, then we will push it into left array and if the element is greater than pivot then we will push the element into right array.
- Then we will recursively call QuickSort for left and right array to partition the arrays until it get sorted completely.
Output -
[1,2,5,10,74,81,85,91,99,100,121,144]
I am New to Data Structures and Algorithm.So, if you find any mistake in this post please correct it in the comment section
THANK YOU
Instagram - https://instagram.com/w_a_a_d_u__h_e_c_k
Top comments (19)
isn't the point of quicksort that you don't need extra memory? left and rightArray aren't necessary imo.
can you show this correction in code as i am not getting the point😆
Sure,
So this one is memory efficient
Tbf - Although I agree with you in "the real world" I read this as "How to create a quicksort algorithm using Javascript" - Which this article does.
It is not a "How to sort an array using Javascript" to which your comment is related.
This is by far the best implementation of quick sort (in terms of simplicity and comprehension) that I have seen. Thank you very much.
Thank you sir
Good use of destructuring with recursion.
maybe u meant spread with recursion :)
Maybe you meant spread with recursion? 🙂
Yeah But Data Structure is important because Understanding the logic of One algorithm can help you to write more algorithms related to your problems
Brother its just a Simple Quick sort algorithm
Code for learning purpose
I didn't said it is better than sort method or any other sorting Algorithm
It is a just part of the DSA which I showed here and as I am learning Javascript also
So, for practice purpose I used Javascript to demonstrate the implementation of this Algorithm.
That's a narrow minded thinking. If there are 100 thousand elements you would ha e to resort to a proper algorithm.
😂
legand 😂
You have an objectively better method, never reinvent the wheel
Yeesss... It is more quick i think 😄
Some comments may only be visible to logged-in visitors. Sign in to view all comments.