Question: Using recursion, determine if an array A of n integers is sorted in strictly descending order. Determine the validity of A0 > A1 > A2
Using recursion, determine if an array A of n integers is sorted in strictly descending order.
Determine the validity of A0 > A1 > A2 > . . . > An1
An empty array is in strictly descending order.
bool i s S t r i c t l y D e s c e n d i n g ( const int A[ ] , int n ) ;
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
