最后的元素互换是如何进行的
void replaceMax(int arr[],int value)
replaceMax(arr1 , arr2[0] );
arr[index] = value;这里 arr[index]是数值最大的数,value就是arr2[0]
谢谢大佬!