Good day dear members,
I would like to write a function that will take an int array as an argument proudces any array that is sorted as MAX, MIN, MAX,.......
For example given the below int array:
int[] ExamScore = new int[] { 55, 11, 21, 6 };
When passed to the required function, the resultent array would be sorted like this: 55, 6, 21, 11. It basically takes the MAX and MIN of the initial array, then eliminate them and look for the new MAX and MIN values within the remaining items.
I appriciated your kind support on this.
Regards,
Ali