1、線性結構

1、鏈表 typedef int ElementType; typedef ElementType ET; 1.單向鏈表web //定義 typedef struct Node *List; struct Node{ ET Data; List Next; }; //申請內存空間 List p=(List)malloc(sizeof(struct Node)); //插入結點 /
相關文章
相關標籤/搜索