-
Notifications
You must be signed in to change notification settings - Fork 2
Home
Nothing edited this page Mar 30, 2021
·
3 revisions
greedy is a specific kind of DP, and DP is a general greedy.
greedy -> local optimization
dp -> global optimization
QuickSelect: time complexity: O(n), worst case: O(n ^ 2)
https://stackoverflow.com/questions/56940793/quickselect-time-complexity-explained
Math.pow(x, y) time complexity: O(log2(y))