航少 发表于 2018-4-2 10:40:23

数据结构入门知识不理解求指导!

void union(list *La,List Lb)
{
int La_len,Lb_len,i;
ElemType e;
La_len=ListLength(La);
Lb_len=ListLength(Lb);
for (i=1;i<=Lb_len;i++)
{
GetElem(Lb,i,e);
if (!LocateElem(La,e,equal))
ListInsert(La,++La_len,e);
}
}

voidvoid union(list *La,List Lb)中的*可不可以换成&;如果不能换的话为什么呢?为什么严版数据结构上是&?

smallhu 发表于 2018-4-2 10:46:22

换成&的话是传引用吧,传引用C++才有,C没有

航少 发表于 2018-4-2 10:48:32

smallhu 发表于 2018-4-2 10:46
换成&的话是传引用吧,传引用C++才有,C没有

那做题的时候写&和*在这个地方一样吗?

BngThea 发表于 2018-4-2 11:05:46

c++中的&传引用,形式上更科学
使用的时候注意指针和变量本身的区别即可
页: [1]
查看完整版本: 数据结构入门知识不理解求指导!