數據結構——單鏈表

辛苦整理了一下頭插法的流程圖: 尾插法稍後再來整理: 下面上傳一下代碼: #include <stdio.h> #include <stdlib.h> #include <math.h> typedef int ElemType; typedef struct LNode { ElemType Data; struct LNode *Next; }List; List L; List *P
相關文章
相關標籤/搜索