摘要:
题目 232.用栈实现队列 class MyQueue { private Stack<Integer> in = new Stack<>(); private Stack<Integer> out = new Stack<>(); public void push(int x) { in.push 阅读全文
摘要:
使用java实现链表 单向链表 双向链表 单向循环链表 双向循环链表 题目记录 160.相交链表 例如以下示例中 A 和 B 两个链表相交于 c1: A: a1 → a2 ↘ c1 → c2 → c3 ↗ B: b1 → b2 → b3Copy to clipboardErrorCopied 但是不 阅读全文