劍指Offer(6):兩個棧實現隊列

class CQueue { Stack<Integer> s1 ; Stack<Integer> s2 ; public CQueue() { s1 = new Stack<>(); s2 = new Stack<>(); } public void appendTail(int value) { s1.push
相關文章
相關標籤/搜索