void Merge (RedType SR[], RedType &TR[], int i, int m, int n...
发布网友
发布时间:2024-02-05 11:57
我来回答
共1个回答
热心网友
时间:2024-03-18 02:28
arrays of references are illegal这句话的意思就是“传引用的数组是非法的”
就是那个 &TR[]不对,把&去掉就行,C中传数组就相当于指针,所以函数也可以写成
void Merge (RedType *SR, RedType *TR, int i, int m, int n)