From b9b82fdd84c44d2e184e163581763f5a112ad162 Mon Sep 17 00:00:00 2001 From: Alexandre Tolstenko Date: Fri, 16 Feb 2024 10:07:29 -0500 Subject: [PATCH] fix: quicksort animation --- docs/algorithms/05-divide-and-conquer/README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/algorithms/05-divide-and-conquer/README.md b/docs/algorithms/05-divide-and-conquer/README.md index f3693416..3f1b23d4 100644 --- a/docs/algorithms/05-divide-and-conquer/README.md +++ b/docs/algorithms/05-divide-and-conquer/README.md @@ -176,6 +176,9 @@ The partitioning process consists of the following steps: - If the right element is greater than the pivot, decrement the right index; - If the left element is greater than the pivot and the right element is less than or equal to the pivot, swap the left and right elements; + +source + ![Sorting_quicksort_anim.gif](Sorting_quicksort_anim.gif) ### Quicksort time complexity