类似于这样
int best(int a[10],int b[10])
{
int flag[10][10];
int i,j;
for(i=0;i<10;i++)
for(j=0;j<10;j++)
if(a[i]==a[j])
flag[i][j]=1;
}
return flag;}