Skip to content

Commit a0d455d

Browse files
committed
Merge pull request algorithm-visualizer#14 from PFischbeck/patch-1
Fix description of Mergesort
2 parents 1487248 + 6d18d41 commit a0d455d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

algorithm/sorting/merge/desc.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"Quicksort": "In computer science, merge sort (also commonly spelled 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. A detailed description and analysis of bottom-up mergesort appeared in a report by Goldstine and Neumann as early as 1948.",
2+
"Mergesort": "In computer science, merge sort (also commonly spelled 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. A detailed description and analysis of bottom-up mergesort appeared in a report by Goldstine and Neumann as early as 1948.",
33
"Complexity": {
44
"time": "average O(n log n)",
55
"space": "worst O(n)"

0 commit comments

Comments
 (0)