數據結構--單鏈表的基本操做(C語言實現)

數據結構--單鏈表的基本操做(C語言實現)     #include<stdio.h> #include<stdlib.h> #define ERROR 0 #define OK   1 typedef int status; typedef int ElemType; typedef struct Node {  ElemType data;  struct Node *next; } LNod
相關文章
相關標籤/搜索