template<class T>
struct queue {
int l = 0;
int r = 0;
T a [ 100000 ] ;
void push(T x) {
a[r] = x;
r=r+1;
}
T front() {
return a[l];
}
void pop() {
if(l<r)l++;
}
bool empty() {
if (l == r)
return true;
return false;
}
};
自用快速STL兼容栈
最新推荐文章于 2024-01-19 13:21:48 发布