参考答案中这段代码是啥意思?
for(;i<n;i++)
{
t1=typeOf(arr1[i]);
t2=typeOf(arr2[i]);
if(countMap1[t1])
{
countMap1[t1]++;
}
else
{
countMap1[t1]=1;
}
if(countMap2[t2])
{
countMap2[t2]++;
}
else
{
countMap2[t2]=1;
}
}
for(;i<n;i++)
{
t1=typeOf(arr1[i]);
t2=typeOf(arr2[i]);
if(countMap1[t1])
{
countMap1[t1]++;
}
else
{
countMap1[t1]=1;
}
if(countMap2[t2])
{
countMap2[t2]++;
}
else
{
countMap2[t2]=1;
}
}
2017-08-09
举报