JAVA:实现使用两个堆栈的队列算法
package com.thealgorithms.others;
import java.util.Stack;
class QueueWithStack {
// Stack to keep track of elements inserted into the queue
package com.thealgorithms.others;
import java.util.Stack;
class QueueWithStack {
// Stack to keep track of elements inserted into the queue