LeetCode-Algorithms-[Easy][雙指針][A]160. 相交鏈表

正好是今年南大初試題的plus版3d 方法1:比較好想指針 public ListNode getIntersectionNode(ListNode headA, ListNode headB) { HashSet<ListNode> set = new HashSet<ListNode>(); while (headA != null) { set.add(headA); h
相關文章
相關標籤/搜索