Fixed heading's formatting errors

This commit is contained in:
Ankit Dhankhar 2017-09-29 23:15:33 +05:30 committed by GitHub
parent aa8485b4df
commit 1f0f4b2c92

View File

@ -1,15 +1,15 @@
#Normal Distribution QuickSort
# Normal Distribution QuickSort
Algorithm implementing QuickSort Algorithm where the pivot element is chosen randomly between first and last elements of the array and the array elements are taken from a Standard Normal Distribution.
This is different from the ordinary quicksort in the sense, that it applies more to real life problems , where elements usually follow a normal distribution. Also the pivot is randomized to make it a more generic one.
##Array Elements
## Array Elements
The array elements are taken from a Standard Normal Distribution , having mean = 0 and standard deviation 1.
####The code
#### The code
```python
@ -52,7 +52,7 @@ The array elements are taken from a Standard Normal Distribution , having mean =
--
##Plotting the function for Checking 'The Number of Comparisons' taking place between Normal Distribution QuickSort and Ordinary QuickSort
## Plotting the function for Checking 'The Number of Comparisons' taking place between Normal Distribution QuickSort and Ordinary QuickSort
```python
>>>import matplotlib.pyplot as plt