栈的链式存储(包括栈的初始化,进栈,出栈,判空等等)
摘要:
#include <iostream>using namespace std; typedef int ElemType; typedef struct Linknode{ ElemType data; struct Linknode* next;}*LiStack; LiStack initLiS 阅读全文
posted @ 2023-02-07 14:21 浪訫 阅读(34) 评论(0) 推荐(0) 编辑