LeetCode#160.Intersection of Two Linked Lists

  • 题目:求两个链表相交的起始节点
  • 难度:Easy
  • 思路:(1)求出两个链表的长度,让长的链表先走n步(两个链表长度的差),然后两个链表同时走;(2)如果两个链表相交,经过两趟循环遍历就能找到交点,第一次遍历后,将节点指向另一个链表的头
  • 代码:
    方法一:
public ListNode getIntersectionNode(ListNode headA, ListNode headB) {
        if(headA == null || headB == null){
            return null;
        }
        int len1 = 1;
        int len2 = 1;
        ListNode node1 = headA;
        ListNode node2 = headB;
        //求出第一个链表的长度
        while(node1.next != null){
            node1 = node1.next;
            len1++;
        }
        //求出第二个链表的长度
        while(node2.next != null){
            node2 = node2.next;
            len2++;
        }
        //如果两个链表的尾不相同的话,则说明链表不会相交
        if(node1 != node2){
            return null;
        }
        //headA先走len1 - len2步
        if(len1 > len2){
            for(int i = 0; i < len1 - len2; i++){
                headA = headA.next;
            }
        }else{
            for(int i = 0; i < len2 - len1; i++){
                headB = headB.next;
            }
        }

        while(headA != headB){
            headA = headA.next;
            headB = headB.next;
        }
        return headA;
    }

方法二:

public ListNode getIntersectionNode1(ListNode headA, ListNode headB) {
        //boundary check
        if(headA == null || headB == null) return null;

        ListNode a = headA;
        ListNode b = headB;

        //if a & b have different len, then we will stop the loop after second iteration
        while( a != b){
            //for the end of first iteration, we just reset the pointer to the head of another linkedlist
            a = a == null? headB : a.next;
            b = b == null? headA : b.next;
        }

        return a;
    }
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值