摘要: 1.栈的顺序表及操作 顺序表就是用数组表示 #include <iostream> #include <iomanip> #include<vector> using namespace std; const int N = 100; int a[N]; int top = -1; void pus 阅读全文
posted @ 2024-07-25 20:34 fafrkvit 阅读(29) 评论(0) 推荐(0)