问题描述
- int* &T是什么意思?是整型指针类型的引用吗?
-
Status InitTriplet(int* &T,Elemtype v1,Elemtype v2, Elemtype v3){
T = (int *)malloc(3 * sizeof(Elemtype));
if (!T)
exit(OVERFLOW);
T[0] = v1;T[1] = v2;T[2] = v3;
return OK;
}
解决方案
int类指针的引用、T是int指针的别名、行参的引用传递
时间: 2024-09-10 17:44:33