Vidyalelo
Data Structure · Q89

Dynamic Programming in Data Structures

Programming · Data Structure · question 89

Q89

Consider the brute force implementation of the rod cutting problem in which all the possible cuts are found and the maximum value is calculated. What is the time complexity of this brute force implementation?

A.
O(n2)
B.
O(n3)
C.
O(nlogn)
D.
O(2n)
Answer

Answer: Option D

Solution

Answer: Option D
No explanation is given for this question Let's Discuss on Board