ZJNU、huyinghao
ZJNU、huyinghao
全部文章
分类
总结归纳(4)
题解(2)
归档
标签
去牛客网
登录
/
注册
ZJNU、huyinghao的博客
全部文章
(共1篇)
栈和队列简述
栈和队列简述 栈(LIFO表) 手写栈 int s[10005],tot=0; #define s.push(x) s[++t]=x #define s.pop() tot- #define s.size() tot #define s.top() s[tot]ps:效率一般高于stl,但只能单纯的...
队列和栈
2020-01-26
0
508