Consider the following functions, where $n$ is a positive integer.
$$ n^{1 / 3}, \log (n), \log (n!), 2^{\log (n)} $$
Which one of the following options lists the functions in increasing order of asymptotic growth rate?
Note: Assume the base of log to be 2 .
Which of the following can be recurrence relation(s) corresponding to an algorithm with time complexity $\Theta(n)$ ?
Consider an unordered list of $N$ distinct integers. What is the minimum number of element comparisons required to find an integer in the list that is NOT the largest in the list?
Consider the following recurrence relation :
$$T(n)=2 T(n-1)+n 2^n \text { for } n>0, T(0)=1$$
Which ONE of the following options is CORRECT?
GATE CSE Subjects
Browse all chapters by subject