Merge pull request #129 from Balance-Breaker/master

Fixed heading's formatting errors
This commit is contained in:
Harshil 2017-11-28 16:58:04 +05:30 committed by GitHub
commit 491439ae50
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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