摘要: 顺序栈: 1 #include<iostream> 2 using namespace std; 3 const int Maxn=100; 4 typedef struct SNode{ 5 int data[Maxn]; 6 int top=-1; 7 }Stack; 8 9 int Push( 阅读全文
posted @ 2020-01-07 00:24 老葛 阅读(577) 评论(0) 推荐(0) 编辑