2a0540d76d
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.
6 lines
109 B
Org Mode
6 lines
109 B
Org Mode
* Sorting
|
|
** Merge: O(n*log(n))
|
|
** Heap: O(n*log(n))
|
|
** Insertion: O(n^2)
|
|
** Quick: O(n^2)
|
|
** Bubble: O(n^2)
|