3.2實現鏈棧的各類基本運算

程序結構:與exp3-1.cpp相同node 程序代碼:算法 listack.cpp //鏈棧基本運算算法 #include <stdio.h> #include <malloc.h> typedef char ElemType; typedef struct linknode { ElemType data; //數據域 struct linknode *next; //指針域
相關文章
相關標籤/搜索