If T(n) = 4T(n/2) + n^2√n, then T(n) is equal to:
What is the time complexity of the fractional knapsack problem?
Which of the following data structures are indexed data structures?
Which type of encryption uses matrix multiplication?
Under which case of the Master's theorem will the recurrence relation of merge sort fall?
What is the ciphered text for the input string "sand foundry" with the key string "code" using the keyword cipher?
Which of the following recursive formulas can be used to find the factorial of a number?
What are the notations used in the evaluation of arithmetic expressions using prefix and postfix forms?
Let P be an array containing n integers. Let t be the lowest upper bound on the number of comparisons of the array elements, required to find the minimum and maximum values in an arbitrary array of n elements. Which one of the following choices is correct?
There are n jobs. Each job has a deadline di > 0 and profit pi > 0. The goal is to find the optimal solution that maximizes the total profit, where the jobs are completed by their deadlines. Given: n = 5, p = (100, 19, 27, 25, 15), and d = (2, 1, 2, 1, 3). Find the optimal solution with the maximum profit.