Question: Solve one of the following three recursive problems: Ackermann's function is a recursively-defined function where computing a value requires computation of a simpler case of

Solve one of the following three recursive problems:

Ackermann's function is a recursively-defined function where computing a value requires computation of a simpler case of the function. It is formally defined as a function on two values A(m, n), as follows:

A(m, n) = n + 1 if m = 0
A(m - 1, 1) if m > 0 and n = 0
A(m - 1, A(m, n - 1)) if m > 0 and n > 0

Write a Java function to compute Ackermann's function given m and n. Note: the results get too large to compute with even small values of n and m. Try A(2, 3) = 9 or A(3, 2) = 29.

or

Write a recursive method that will calculate and return the range of values in an array. The range is defined as the maximum value in the array minus the minimum value. Hint: you will need a different approach than the solution to problem 2, because you need to calculate both the minimum and maximum values, and a method can have only one return value.

or

Write a recursive method that will find whether or not a particular substring occurs inside another (like indexOf except with a boolean return value). For example, searching "water" for "ate" returns true, but searching "water" for "war" returns false. Here's the catch: you can only use the String charAt and length methods . Also, be careful, because if you search "array" for "ra", the answer is true (don't get caught up looking only at the first "r"). If you like you can have one recursive method that calls another recursive method.

Your solutions must be completely recursive, and have no loops. If your recursive method requires additional parameters not specified by the problem, write a helper method that will call the recursive method with correct initial parameters.

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!