判断两个数组是否相等c++
模板不用多说,就是背。
注意: 就是不能
,因为这样只是比较的数组的起始地址。if(path==temp)
源码
bool check(int path[], int temp[])
{
for (int i = 1; i <= n; i ++ )
{
if (path[i] != temp[i]) return false;
}
return true;
}
版权声明:
作者:徐锦桐
链接:https://www.xujintong.com/2023/03/04/134/
自由转载-非商用-非衍生-保持署名(创意共享3.0许可证)
作者:徐锦桐
链接:https://www.xujintong.com/2023/03/04/134/
自由转载-非商用-非衍生-保持署名(创意共享3.0许可证)
THE END