From 16d643ecba232b9ae2d4a9639bc316b95c763369 Mon Sep 17 00:00:00 2001 From: Shantanu Tripathi Date: Fri, 12 Oct 2018 13:11:24 +0530 Subject: [PATCH] Added a good reference video on Quick sort Added a link to one of the finest videos on Quick sort for beginners to understand. It belongs to MyCodeSchool channel on youtube. --- .../english/algorithms/sorting-algorithms/quick-sort/index.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/client/src/pages/guide/english/algorithms/sorting-algorithms/quick-sort/index.md b/client/src/pages/guide/english/algorithms/sorting-algorithms/quick-sort/index.md index fc46229b90..5e8cc13cfb 100644 --- a/client/src/pages/guide/english/algorithms/sorting-algorithms/quick-sort/index.md +++ b/client/src/pages/guide/english/algorithms/sorting-algorithms/quick-sort/index.md @@ -140,3 +140,5 @@ The space complexity of quick sort is O(n). This is an improvement over other di - Youtube: Gayle Laakmann McDowell (author of Cracking The Coding Interview) explains the basics of quicksort and show some implementations +- Quick Sort - MyCodeSchool +