I am confuse about the big O notation.
O(n^2) -> it grows quadratically, when you double the size of n, the number of operations would actually be multiplied by a factor of 4.
O(n*log(n)) -> when you double the size of n, the number of operations would actually be multiplied by a factor of how much???
2n*log (2n) / n*log(n) = 2*log(2n)/log(n) =2*log_n (2n)
Is this the factor?