From 787729c910ac059230db254ea0a04daf53aef8eb Mon Sep 17 00:00:00 2001 From: Faizan Ahmad Date: Tue, 25 Jun 2019 04:24:45 +0530 Subject: [PATCH] Updated Properties of Merge Sort (#27052) * Updated Properties of Merge Sort Added the advantage of Merge Sort in linked lists over Quick Sort. * fix: correct code block syntax --- .../algorithms/sorting-algorithms/merge-sort/index.md | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/guide/english/algorithms/sorting-algorithms/merge-sort/index.md b/guide/english/algorithms/sorting-algorithms/merge-sort/index.md index aa5ff11e57..d2b49c7336 100644 --- a/guide/english/algorithms/sorting-algorithms/merge-sort/index.md +++ b/guide/english/algorithms/sorting-algorithms/merge-sort/index.md @@ -7,7 +7,9 @@ Merge Sort is a USFCA @@ -175,9 +178,10 @@ int main() printf("\nSorted array is \n"); printArray(arr, arr_size); return 0; - ``` + ### Implementation in C++ + ```cpp void merge(int arr[], int l, int m, int r) {