Chapter 1: Problem 31
Show that the function \(f(n)=\left|n^{2} \sin n\right|\) is in neither \(O(n)\) nor \(\Omega(n)\)
Chapter 1: Problem 31
Show that the function \(f(n)=\left|n^{2} \sin n\right|\) is in neither \(O(n)\) nor \(\Omega(n)\)
All the tools & learning materials you need for study success - in one app.
Get started for freeAlgorithm A performs \(10 n^{2}\) basic operations, and algorithm B performs \(300 \ln n\) basic operations. For what value of \(n\) does algorithm \(\mathrm{B}\) start to show its better performance?
What is the time complexity \(T(n)\) of the nested loops below? For simplicity, you may assume that \(n\) is a power of \(2 .\) That is, \(n=2^{k}\) for some positive integer \(k\) : \\[ \begin{array}{l} i=n_{i} \\ \text { while }(i>=1)\\{ \\ \qquad \begin{array}{c} j=i \\ \text { while }(j<=n) \end{array} \end{array} \\] < body of the inner while loop> \(\quad\) I/ Needs \(\Theta(1)\) \\[ j=2^{*} j \\] } \\[ i=|1 / 2| \\] }
Write an Insertion Sort algorithm that uses Binary Search to find the position where the next insertion should take place.
Justify the correctness of the following statements assuming that \(f(n)\) and \(g(n)\) are asymptotically positive functions. (a) \(f(n)+g(n) \in O(\max (f(n), g(n))\) (b) \(f^{2}(n) \in \Omega(f(n))\) (c) \(f(n)+o(f(n)) \in \Theta(f(n)),\) where \(o(f(n))\) means any function \(g(n) \in\) \(o(f(n))\)
Write an algorithm that finds both the smallest and largest numbers in a list of \(n\) numbers, Try to find a method that does at most about \(1.5 n\) comparisons of array items.
What do you think about this solution?
We value your feedback to improve our textbook solutions.