From d3097e632358441ab110a6b554bea3bdfec6f3d8 Mon Sep 17 00:00:00 2001 From: chr15t0ph Date: Mon, 14 Nov 2022 16:03:34 +0100 Subject: [PATCH] Corrected color inconsistencies Changed color code of Bucket Sort, Radix Sort, and Counting Sort from green to yellow, to be in sync with the bigocheatsheet.com color code specs for O(n) --- Tables.html | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/Tables.html b/Tables.html index 2322456..2f616f5 100644 --- a/Tables.html +++ b/Tables.html @@ -276,23 +276,23 @@

Array Sorting Algorithms

Bucket Sort - Ω(n+k) - Θ(n+k) + Ω(n+k) + Θ(n+k) O(n^2) O(n) Radix Sort - Ω(nk) - Θ(nk) - O(nk) + Ω(nk) + Θ(nk) + O(nk) O(n+k) Counting Sort - Ω(n+k) - Θ(n+k) - O(n+k) + Ω(n+k) + Θ(n+k) + O(n+k) O(k)