160 相交链表
/*** Definition for singly-linked list.* public class ListNode {* int val;* ListNode next;* ListNode(int x) {* val = x;* next = null;* }* }*/public class Solution {public ListNode getIntersectionNode(ListNode headA, ListNode headB) {ListNode p = headA, q = headB;while (p != q) {p = (p != null) ? p = p.next : headB;q = (q != null) ? q = q.next : headA;}return p;}}
