鏈表的創建和操作

//鏈式結構 #include <stdio.h> #include<stdlib.h>  #include <malloc.h> #define MAXSIZE 1000 typedef char ElemType; typedef struct LNode{//定義單鏈表結點類型  ElemType data;  struct LNode *next; }LinkList; void Init
相關文章
相關標籤/搜索