given the following problem from CLRS algo book.
For each function f (n) and time t in the following table, determine the largest size n of a problem that can be solved in time t, assuming that the algorithm to solve the problem takes f(n) microseconds.
- how can one calculate n for f(n)=nlog(n) when time is 1 second?
- how can one calculate n for f(n)=n! when time is 1 second?