這是一個C語言單鏈表並帶有頭結點的鏈表初始化,哪裡有錯?形參帶不帶&有什麼不一樣?
#include
#include
typedef struct student
{
int number;
struct student* next;
}Node,*List;
void init(List w)//List &w
{
w=(List)malloc(sizeof(Node));
if(!w)
return;
w->next=NULL;
}
int main()
{
List list1;
init(list1);
return 0;
}
形參不用引用,你改變的只是那個函數中實參的副本,而實參本身並沒有改變。
假設本來list1指向地址A,調用init函數後參數w的初值被初始化為A的地址。
執行w=(List)malloc(sizeof(Node));後w指向了新分配的地址,但是list1並沒有改變。