understand IDE basis/shortcuts
key binding
go to source: shift + cmd + s(cmd + click) go to declaration: shift + cmd + d
edit history previous item: ctrl + cmd + left-arrow edit history next item: ctrl + cmd + right-arrow
go to source: shift + cmd + s(cmd + click) go to declaration: shift + cmd + d
edit history previous item: ctrl + cmd + left-arrow edit history next item: ctrl + cmd + right-arrow
if a>=1 and b > 1, T(n) = aT(n/b) + f(n)
case 1 \[ f(n) = O(n^{\log_b{a-\epsilon}}) \longrightarrow T(n) = \Theta(n^{\log_ba}) \]
variables that are internal to makefile are lowercase; variables that might be set from the command line are uppercased.
1 | local_dir := lib/codec |
1 | library := libcodec.a |