我在渐近分析问题上遇到了一些麻烦:我的问题是计算最大值,如果 'a' 如我的问题中所述:
An Algorith A has running time T(n)= 7T(n/2) + n^2
and Algorith B has running time T' = aT'(n/4) + n^2.
What will be the maximum integer value of 'a' such that algorith B runs
asymptotically faster than A.
我应该如何找到'a'的价值,我应该只使用算法概念还是他们的任何其他方式来找出或任何解决方案。