Question: class Star { public static int findMinRec ( int A [ ] , int n ) { if ( n = = 1 ) return

class Star
{
public static int findMinRec(int A[], int n)
{
if(n ==1)
return A[0];
return Math.min(A[n-1], findMinRec(A, n-1));
}
public static int findMaxRec(int A[], int n)
{
if(n ==1)
return A[0];
return Math.max(A[n-1], findMaxRec(A, n-1));
}
public static void main(String args[])
{
int A[]={1,4,45,6,-50,10,2};
int n = A.length;
System.out.println("Original Array is :");
for(int i =0 ; i

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!