Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit eca0cd8

Browse filesBrowse files
Update README.md
1 parent f6a5655 commit eca0cd8
Copy full SHA for eca0cd8

File tree

Expand file treeCollapse file tree

1 file changed

+2
-4
lines changed
Filter options
Expand file treeCollapse file tree

1 file changed

+2
-4
lines changed

‎README.md

Copy file name to clipboardExpand all lines: README.md
+2-4Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,7 @@ Selection sort is noted for its simplicity, and it has performance advantages ov
4343

4444
## Merge Sort
4545
Merge Sort is a Divide and Conquer algorithm that continually splits a list in half and then merge the sublists in a sorted way.
46-
A single most important advantage of merge sort over quick sort
47-
is its stability: the elements compared equal retain their original order.
46+
A single most important advantage of merge sort over quick sort is its stability: the elements compared equal retain their original order.
4847

4948

5049
| Case | Performance |
@@ -59,8 +58,7 @@ is its stability: the elements compared equal retain their original order.
5958

6059
## Quick sort
6160

62-
Quick Sort is a recursive sorting algorithm that is more effective than other Θ(nlogn) algorithms for datasets that fit in memory, but is unstable.
63-
Quick Sort in general does not requiere extra space while Merge Sort requires O(N) extra storage
61+
Quick Sort is a recursive sorting algorithm that is more effective than other Θ(nlogn) algorithms for datasets that fit in memory, but is unstable. Quick Sort in general does not requiere extra space while Merge Sort requires O(N) extra storage
6462

6563
| Case | Performance |
6664
| :---: | :---: |

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.