Intersection of Two Linked Lists 本题收获: 1.链表的输入输出 2.交叉链表:这个链表可以有交叉点,只要前一个节点的的->next相同即可. 题目:Intersection of Two Linked Lists Write a program to find the node at which the intersection of two singly linked lists begins. For example, the following two l…