Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Christian Bender authored Mar 29, 2018
1 parent 757ad7f commit 4d43599
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,9 @@ __Properties__
From [Wikipedia][merge-wiki]: In computer science, merge sort (also commonly spelt mergesort) is an efficient, general-purpose, comparison-based sorting algorithm. Most implementations produce a stable sort, which means that the implementation preserves the input order of equal elements in the sorted output. Mergesort is a divide and conquer algorithm that was invented by John von Neumann in 1945.

__Properties__
* Worst case performance O(n log n)
* Best case performance O(n)
* Average case performance O(n)
* Worst case performance O(n log n) (typical)
* Best case performance O(n log n)
* Average case performance O(n log n)


###### View the algorithm in [action][merge-toptal]
Expand Down

0 comments on commit 4d43599

Please sign in to comment.