Array in C++

Hi to all
I need your help in this question

An integer array is defined to be sequentially-bounded if it is in ascending order and each value, n, in the array occurs less than n times in the array. So {2, 3, 3, 99, 99, 99, 99, 99} is sequentially-bounded because it is in ascending order and the value 2 occurs less than 2 times, the value 3 occurs less than 3 times and the value 99 occurs less than 99 times. On the other hand, the array {1, 2, 3} is not sequentially-bounded because the value 1 does not occur < 1 times. The array {2, 3, 3, 3, 3} is not sequentially-bounded because the maximum allowable occurrences of 3 is 2 but 3 occurs 4 times. The array {12, 12, 9} is not sequentially-bounded because it is not in ascending order.
Write a function in C++ that returns 1 if its array argument is sequentially-bounded, otherwise it returns 0.
Last edited on
We can assist you in completing the assignment, but in general we are not a homework service.
Please post your non-working code and we can go from there.
Topic archived. No new replies allowed.