int method(int x[], int n)
{
int low = 0, high = n - 1;
while (low < high)
{
while (x[high] % 2 != 0)
high--;
while (x[low] % 2 != 1)
{
low++;
}
if (low < high)
{
swap(x[low],x]high);
}
low++;
high--;
}
}