摘要:如果的數字都只有一個,那么我們會形成一個閉合的環。如果有重復數字出現的話,如下這里就有一個的環,就是重復數字如果到每個數字都只出現一次,在里的個數應該就是個數大于的話,前面的數字里就會有重復。
// 如果[1,n]的數字都只有一個,那么我們會形成一個閉合的環。 idx 1 2 3 4 val 3 1 4 2 1->3->4->2 這樣就是一個閉合的環。 如果有重復數字出現的話,如下: idx 1 2 3 4 5 val 2 4 2 3 1 1->2->4->3->2->4 這里就有一個2->4->3->2的環, 2就是重復數字 public class Solution { public int findDuplicate(int[] nums) { 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 fast; } }
如果1到mid每個數字都只出現一次,在nums里<=mid的個數應該就是mid. 個數大于mid的話,前面的數字里就會有重復。 public class Solution { public int findDuplicate(int[] nums) { int n = nums.length-1, lo = 1, hi = n; while(lo < hi){ int mid = lo + (hi-lo)/2, count = 0; for(int n: nums) if(n <= mid) count++; if(count > mid) hi = mid; else low = mid+1; } return lo; } }
文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。
轉載請注明本文地址:http://specialneedsforspecialkids.com/yun/67565.html
摘要:復雜度思路每次通過二分法找到一個值之后,搜索整個數組,觀察小于等于這個數的個數。考慮,小于這個位置的數的個數應該是小于等于這個位置的。要做的就是像找中的環一樣,考慮重復的點在哪里。考慮用快慢指針。代碼把一個指針放回到開頭的地方 LeetCode[287] Find the Duplicate Number Given an array nums containing n + 1 in...
Problem 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 nu...
題目: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 Number Given an array nums containing n + 1 integers where each integer is bet...
Problem 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 nu...
閱讀 883·2021-11-22 12:04
閱讀 2088·2021-11-02 14:46
閱讀 616·2021-08-30 09:44
閱讀 2098·2019-08-30 15:54
閱讀 715·2019-08-29 13:48
閱讀 1587·2019-08-29 12:56
閱讀 3441·2019-08-28 17:51
閱讀 3279·2019-08-26 13:44