Leetcode 142: Linked List Cycle II & Leetcode 287: Find the Duplicate Number

Leetcode 142:

Given a linked list, return the node where the cycle begins. If there is no cycle, return null.
Note: Do not modify the linked list.


解题思路:

设置两个指针,一个快(fp), 一个慢(sp)。fp每次走两步,速度是 2v ,sp每次走一步,速度是 v 。当两次指针第一次相遇时,fp比sp多走了一个circle的距离,设循环之前的长度是l。圆环的周长是 c ,相遇时sp在圆环上走的距离是c1,相遇时fp和sp都走了 s1 步,于是有:
快指针: 2v×s1=l+c+c1
慢指针: v×s1=l+c1
化简去掉 v s1,得:
cc1=l
此等式说明慢指针到圆环起点的距离恰好等于链表起点到圆环起点的距离。如下图:
两指针移动情况

然后一个指针回到起点,另一个从相遇点出发,当两个指针再次相遇时,相遇点便是圆环的起点:

/**
 * Definition for singly-linked list.
 * struct ListNode {
 *     int val;
 *     struct ListNode *next;
 * };
 */
struct ListNode *detectCycle(struct ListNode *head) {
        struct ListNode* slow=head;
        struct ListNode* fast=head;
        while(slow!=NULL && fast!=NULL){
            fast=fast->next;
            slow=slow->next;
            if(fast!=NULL) fast=fast->next;
            if(fast==slow) break;

        }
        if(fast==NULL) return NULL;
        fast=head;
        while(fast!=slow){
            fast=fast->next;
            slow=slow->next;
        }
        return fast;
}

Leetcode 287

Given an array nums containing n + 1 integers where each integer is between 1 and n (inclusive), prove that at least one duplicate number must exist. Assume that there is only one duplicate number, find the duplicate one.

Note:
- You must not modify the array (assume the array is read only).
- You must use only constant, O(1) extra space.
- Your runtime complexity should be less than O(n2).
- There is only one duplicate number in the array, but it could be repeated more than once.

解题思路

之所以将这两个题放在一起,是因为这第二个题可以看成以第一个题的变种,问题的关键是怎么将第二题转换成第一题,举个例子

45613257

从位置0开始,
- 位置0的值是4,
- 位置4的值是3,
- 位置3的值是1,
- 位置1的值是5,
- 位置5的值是2,
- 位置2的值是6,
- 位置6的值是5,
- 位置5的值是2,

此时便形成了一个环
4->3->1->(5->2->6)->(5->2->6)…

和142题一样,圆环的起点便是重复的那个值

class Solution {
public:
    int findDuplicate(vector<int>& nums) {
        if(nums.size()>1){
            int slow=nums[0];
            int fast=nums[nums[0]];
            while(slow!=fast){
                slow=nums[slow];
                fast=nums[nums[fast]];

            }
            fast=0;
            while(slow!=fast){
                slow=nums[slow];
                fast=nums[fast];

            }
            return slow;
        }
        return -1;
    }
};
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值