hey everybody i am trying to implement code for finding order statistic but i am getting a error ..in algorithm two variables are passed in random function is there any way to pass two variables in it if yes than how?? and if no then what can be its alternate ... your help will be appreciated
#include<iostream.h>
#include<conio.h>
#include<stdlib.h>
int RandomizedSelect(int*,int,int,int);
int RandomizedPartition(int*, int, int);
int partion(int*,int,int);
void main()
{
int n,x,i;
cout<<"Enter length of array";
cin>>n;
int *a=new int[n];
cout<<"Enter elements of array";
for(i=0;i<n;i++)
{
cin>>a[i];
}
cout<<"Enter element less than size of array";
cin>>x;
int z=RandomizedSelect(a,0, n, x);
cout<<z;
getch();
}
int RandomizedSelect(int A[],int p, int r,int i)
{
if (p == r)
{
return A[p];
}
int q = RandomizedPartition(A, p, r);
int k = q - p + 1;
if (i == k)
{
return A[q];
}
else if (i < k)
{
return RandomizedSelect(A, p, q-1, i) ;
}
else return RandomizedSelect(A, q+1, r, i - k);
}
int Partition(int A[],int p,int r)
{
int x=A[r],temp;
int i=p-1,j;
for(j=p;j<r-1;j++)
{
if(A[j]<=x)
{
i++;
temp=A[i];
A[i]=A[j];
A[j]=temp;
}
}
temp=A[i+1];
A[i+1]=A[r];
A[r]=temp;
return i+1;
}
int RandomizedPartition(int A[],int p,int r)
{
int temp;
int j = random(p,r);
temp=A[r];
A[r]=A[j];
A[j]=temp;
return Partition(A, p, r);
}
conio.h,void main,getch,iostream.h:)) These really take me back to high school. – cnicutar May 1 '11 at 8:18