Array - 9: Implement Quick Sort | Quick Sort on Array

preview_player
Показать описание
Solution:
- we'll take a pivot point starting from start or end
- Our aim is to put pivot point value to its correct location
- For this we take two variable i & j
- As soon as value at ith index is less than pivot point, we increase the i
- Similarly as soon as value at jth index is greater than value at pivot point, we decrease the j
- If i is less than j, we swap the value & when i greater than j, we swap value at pivot point & at j
- When we're done with this, we recursively call with the left part & right part
- At last you'll have all values as sorted

Time Complexity: O(nlog(n))
Space Complexity: O(1)

Do Watch video for more info

CHECK OUT CODING SIMPLIFIED

★☆★ VIEW THE BLOG POST: ★☆★

I started my YouTube channel, Coding Simplified, during Dec of 2015.
Since then, I've published over 400+ videos.

★☆★ SUBSCRIBE TO ME ON YOUTUBE: ★☆★

★☆★ Send us mail at: ★☆★
Рекомендации по теме
Комментарии
Автор

This Implementation is not working for Duplicates Elements.

dipakraut
Автор

What is the meaning of this side?? Which side you are saying I can't understand?? Please use pen to so that we clear understand left or right and also which element you are saying. I mean that you are not marking which side you are saying so. You are just saying this side this side.

arijitkumarmahto