首页 > 代码库 > 手工 stack栈 queue队列 priority queue 优先队列 模板

手工 stack栈 queue队列 priority queue 优先队列 模板

栈stack:

 1 struct sta 2 { 3     int sz[100001]; 4     int top() 5     { 6         return sz[top]; 7     } 8     void push(int x){ 9          sz[++top]=x;10     }11     void pop(){12         if(top>0)13         top--;14     }15     void cl()16     {17         top=0;18     }19     int size(){20         return top;21     }22 }stack;

 

手工 stack栈 queue队列 priority queue 优先队列 模板