Coggle requires JavaScript to display documents.
O(n^2) => O(nlogn)
K(n, c) = max(K(n-1,c), K(n-1, c-Wn) + Vn)
O(n^2) => O(nlogn) => O(n)
O(2^n)...O(1)
O(2^n)
not runnable
O(n!)
T(n)
n
n^2 + n + 2 ~= n^2
0.5n ~= n
O(n)
O(logn)
O(1)
n!
n!/m!
n!/m!(n!-m!)
n(n+1)/2
P(A & B)=P(A)*P(B)
P(A or B)=P(A)+P(B)
P(B)=1-P(A)
push(e), pop()
enqueue(e), dequeue()
enqueue(e,p), dequeue()
insert(n,e), remove(n), get(n), sort(), slice(start,end), reverse()
insert(e), remove(n), get(n)
set(key, value), delete(key), get(key)
add(e), delete(e), list
print, if, while-loop, for-loop
GOTO
JUMP
if, else, while, for...
filter, map, reduce