...
/Algorithm Design: Randomized Algorithms
Algorithm Design: Randomized Algorithms
Understand randomized algorithm technique with the help of QuickSort algorithm.
We'll cover the following...
Randomized algorithms
Suppose you hear your phone ringing somewhere in your house. If you happen to have a coin, then before even starting to search for the phone, you could toss it to decide whether you want to start your search on the first floor if the coin comes up heads, or on the second floor if the coin comes up tails. If you also happen to have a die, then after deciding on the second floor of your mansion, you could roll it to decide in which of the six rooms on the second floor to start your search.
Although tossing coins and rolling dice may be a fun way to search for the phone, it is certainly not the intuitive thing to do, nor is it at all clear whether it gives you any algorithmic advantage over a deterministic algorithm.
Our programming challenges will help you learn why randomized algorithms are useful and why some of them have a competitive advantage over deterministic algorithms.
QuickSort algorithm
To give an example of a randomized algorithm, we will first discuss a fast sorting technique called It selects an element (typically the first) from an array and simply partitions the array into two subarrays: , containing all elements from that are smaller than ; and containing all elements larger than .
This partitioning can be done in linear time, and by following a divide-and-conquer strategy, recursively sorts each subarray in the same way. The sorted list is easily created by simply concatenating the sorted , element , and the sorted .
:
if consists of a single element:
return
determine the set of elements smaller than
determine the set of elements larger than
...