BigOCheatSheet
BigOCheatSheet copied to clipboard
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)
Changed "Complexity" to "Efficiency", because Big O Notation is a way to measure an algorithm's efficiency. Big-O classes should not be confused with the actual complexity classes (= P, QP,...
I cannot suggest changes to the website so I figured out to: - [x] add all I discovered on the internet about an introduction into a big o notation to...
I already provide a PR here #153 Might as well review it immediately Thank you 🙏 @ericdrowell
To complete the recommended community standards and encourage healthy contributions and build communities
Please add square root of x to the complexity /growth image
You seem to be making the common mistake of thinking big-Theta means average case and big-O means worst case, which is not correct. Either big-O or big-Theta or big-Omega can...
Allow assistive technology to understand the headers of the table. This semantically tags the head and body of the table so that the current column and row can be read...
you can actually have O(n) worst case if you have a sorted array and you keep on taking the last element as pivot.