const 课程地址 = " http://icourse8.com/fbsswsj.html ";
章节信息
第1章 课程介绍
第2章 事务原则与实现
第3章 使用Docker搭建环境
第4章 Spring事务机制
第5章 分布式系统
第6章 分布式事务实现,模式和技术
第7章 分布式事务实现:消息驱动模式
第8章 分布式事务实现:Event Sourcing模式
第9章 TCC模式和微服务架构的设计模式
第10章 课程总结
`class MyStack {
private Queue<Integer> a;//输入队列
private Queue<Integer> b;//输出队列
public MyStack() {
a = new LinkedList<>();
b = new LinkedList<>();
}
public void push(int x) {
a.offer(x);
// 将b队列中元素全部转给a队列
while(!b.isEmpty())
a.offer(b.poll());
// 交换a和b,使得a队列没有在push()的时候始终为空队列
Queue temp = a;
a = b;
b = temp;
}
public int pop() {
return b.poll();
}
public int top() {
return b.peek();
}
public boolean empty() {
return b.isEmpty();
}
}
`
原文地址:https://blog.51cto.com/14127742/2412364
时间: 2024-11-09 02:55:19