帶有頭結點的棧的實現

#include<stdio.h> #include <stdlib.h> #define ERROR 0 #define OK 1 typedef void Status; typedef int ElemType; typedef struct LNode {     ElemType data;     struct LNode * next; } LNode,*Linklist; Stat
相關文章
相關標籤/搜索