Create org table of sorting algorithms and their efficiency

This is just a small org table that I created to help me

Fun fact: In Emacs, you can insert literal TAB character by pressing `C-q
TAB`. For creating tables, using TAB characters feels perfectly
acceptable. Perhaps the TAB name comes from TABle.
This commit is contained in:
William Carroll 2020-01-22 10:12:27 +00:00
parent de039c7133
commit 2a0540d76d

6
deepmind/efficiency.org Normal file
View file

@ -0,0 +1,6 @@
* Sorting
** Merge: O(n*log(n))
** Heap: O(n*log(n))
** Insertion: O(n^2)
** Quick: O(n^2)
** Bubble: O(n^2)