Vidyalelo
Data Structure · Q178

Dynamic Programming in Data Structures

Programming · Data Structure · question 178

Q178

You are given an array of elements where each array element represents the MAXIMUM number of jumps that can be made in the forward direction from that element. You have to find the minimum number of jumps that are required to reach the end of the array. Which of these methods can be used to solve the problem?

A.
Dynamic Programming
B.
Greedy Algorithm
C.
Recursion
D.
Recursion and Dynamic Programming
Answer

Answer: Option D

Solution

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