Is it possible to arrange the array made up of only 1\'s and 0\'s in descending order within one parse without using auxiliary array? For example: Suppose you have an ar
Just an other way of it .
Have two pivots one from beginning and other at end like the bellow one ,
for(int i=0, j=n-1;i