hamiltonpeyton9668 hamiltonpeyton9668 06-06-2023 Engineering contestada Suppose the running time of an algorithm is given by the following recurrence relation: T(0) = 1 T(n) = 2 T (n/2) + n^2 What is the Big Oh complexity of T(n)? Give as tight a bound as possible and show your work.