Quick Sort Algorithm | How Quick Sort Works (Example Diagram) | Part - 1 | Sorting Algorithms - DSA

Published: 07 January 2020
on channel: Simple Snippets
69,841
1.7k

Support Simple Snippets by Donations -
Google Pay UPI ID - tanmaysakpal11@okicici
PayPal - paypal.me/tanmaysakpal11
--------------------------------------------------------------------------------------------- In this DSA tutorial, we will understand the working of Quick Sort Algorithm with the help of a visual diagram. We will dry run the entire quick sort sorting algorithm to understand its working.
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.
1. Always pick first element as pivot.
2. Always pick last element as pivot (implemented in this video)
3. Pick a random element as pivot.
4. Pick median as pivot.
The key process in quickSort is partition().
In the Partitioning process, we perform In-Place sorting on the same array/list in such a way that, all the elements smaller than the pivot element are shifted to the left of the pivot element & all the elements that are larger than the pivot element are shifted to the right of the pivot element.
Full DSA playlist -    • Introduction to Data Structures & Algorith...  
Full Code & Theory article - https://simplesnippets.tech/quick-sor...
C++ Programming Tutorials for Beginners Course -    • Introduction to Computer Programming & C++...  

Simple Snippets Official Website -
http://simplesnippets.tech/
Simple Snippets on Facebook -
  / simplesnippets  
Simple Snippets on Instagram -
  / simplesnippets  
Simple Snippets on Twitter -
  / simplesnippet  
Simple Snippets Google Plus Page -
https://plus.google.com/+SimpleSnippets
Simple Snippets email ID -
simplesnippetsinfo@gmail.com

For More Technology News, Latest Updates and Blog articles visit our Official Website - http://simplesnippets.tech/
#quicksort #sortingalgorithms #datastructures #algorithms


On this page of the site you can watch the video online Quick Sort Algorithm | How Quick Sort Works (Example Diagram) | Part - 1 | Sorting Algorithms - DSA with a duration of hours minute second in good quality, which was uploaded by the user Simple Snippets 07 January 2020, share the link with friends and acquaintances, this video has already been watched 69,841 times on youtube and it was liked by 1.7 thousand viewers. Enjoy your viewing!