gpt4 book ai didi

c++ - 两个数组是否相等函数c++

转载 作者:行者123 更新时间:2023-11-30 00:51:32 24 4
gpt4 key购买 nike

<分区>

我正在尝试执行与数组进行比较的函数,如果它们相同则返回 true。现在数组很简单,稍后会进行改进,但我被困在 testEqual 函数上。所以这是代码

int n = 5;
int array[5] = {5,10,3,4,7};
bubbleSort(pole,n);

int array2[5] = {3,4,5,7,10};
testEqual( array , array2 , "bubbleSort");

这里是 testEqual 函数,我需要在数组上重新制作,但我不知道如何。

bool testEqual(int i1, int i2, const string testName) {
bool myresult = (i1 == i2);
return myresult;
}

其他函数如 bubbleSort 都很好我只需要重新制作 testEqual

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com