- 博客(2)
- 收藏
- 关注
原创 c++实现队列基本操作
c++实现队列基本操作,进队,出队,遍历队列 2019-11-26 #include <iostream> using namespace std; typedef int DataType; #define Node ElemType class Node { public: DataType data; ElemType *next; }; class QueueLink...
2019-11-26 12:15:21
5030
5
原创 C++实现栈的6种基本操作——链表
C++栈的操作 2019-11-26 #include <iostream> using namespace std; typedef int DataType; #define Node ElemType class Node { public: DataType date; ElemType *next; }; class StackLinkList { public:...
2019-11-26 09:40:47
242
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人
RSS订阅