摘要:題目要求在數(shù)組中找到第一個漏掉的正整數(shù)。思路一暴力排序后尋找排序后尋找顯然是最快的。這些臨時變量可以是排除出的量,也可以是有效量。當遇到的數(shù)字為有效數(shù)字時,則將該數(shù)字放到對應(yīng)當前起始下標其相應(yīng)的位置上。
題目要求
Given an unsorted integer array, find the first missing positive integer. For example, Given [1,2,0] return 3, and [3,4,-1,1] return 2. Your algorithm should run in O(n) time and uses constant space.
在數(shù)組中找到第一個漏掉的正整數(shù)。如果可以的話,使用O(N)的時間復(fù)雜度和O(1)的空間復(fù)雜度。
思路一:暴力排序后尋找排序后尋找顯然是最快的。排序的時間復(fù)雜度要依靠java底層的依賴。之后再用O(N)的時間復(fù)雜度找到第一個漏掉的整數(shù)后即退出遍歷。
public int firstMissingPositive(int[] nums) { int size = nums.length; if(size == 0) return 1; Arrays.sort(nums); int positive = 1; for(int i = 0 ; i思路二:O(1)空間復(fù)雜度positive) return positive; positive++; } return positive; }
要實現(xiàn)這種空間復(fù)雜度,一般需要有限數(shù)量的臨時變量來記錄遍歷的有效范圍,再利用原有題目中的數(shù)據(jù)結(jié)構(gòu)來存儲其余的臨時變量。這些臨時變量可以是排除出的量,也可以是有效量。在這里我用leftPointer記錄有效數(shù)字的開始下標(即將無效數(shù)字轉(zhuǎn)移到leftPointer左側(cè)),利用maxPositive記錄數(shù)組最大有效整數(shù)(換句話說,如果一個數(shù)組的大小為9,則該數(shù)組的最大first missing positive integer即為10,一旦數(shù)組中出現(xiàn)重復(fù)或是小于1或是大于9的數(shù)字,該數(shù)字即為無效數(shù)字)。當遇到的數(shù)字為有效數(shù)字時,則將該數(shù)字放到對應(yīng)當前起始下標leftPointer其相應(yīng)的位置上。
public int firstMissingPositive2(int[] nums){ int size = nums.length; int positive = 1; int leftPointer = 0; int maxPositive = size; while(leftPointermaxPositive || nums[leftPointer] < positive || nums[leftPointer]==nums[leftPointer+nums[leftPointer]-positive]){ leftPointer++; maxPositive--; }else{ int temp = nums[leftPointer]; nums[leftPointer] = nums[leftPointer+temp-positive]; nums[leftPointer+temp-positive] = temp; } } return positive; }
想要了解更多開發(fā)技術(shù),面試教程以及互聯(lián)網(wǎng)公司內(nèi)推,歡迎關(guān)注我的微信公眾號!將會不定期的發(fā)放福利哦~
文章版權(quán)歸作者所有,未經(jīng)允許請勿轉(zhuǎn)載,若此文章存在違規(guī)行為,您可以聯(lián)系管理員刪除。
轉(zhuǎn)載請注明本文地址:http://m.specialneedsforspecialkids.com/yun/67390.html
Problem Given an unsorted integer array, find the smallest missing positive integer. Example 1: Input: [1,2,0]Output: 3Example 2: Input: [3,4,-1,1]Output: 2Example 3: Input: [7,8,9,11,12]Output: 1Note...
摘要:小鹿題目算法思路桶排序思想。再遍歷數(shù)組,從下標開始判斷該下標是否存放規(guī)定的數(shù)據(jù),如果不是則該下標就是這組數(shù)據(jù)中缺失的最小正整數(shù)。桶排序還可以實現(xiàn)在一組數(shù)據(jù)中查找重復(fù)的數(shù)據(jù)。 Time:2019/4/6Title: First Missing PositiveDifficulty: DifficultyAuthor: 小鹿 題目:First Missing Positive Give...
摘要:找第一個缺失的正整數(shù),只要先按順序排列好,也就是,找到第一個和不對應(yīng)的數(shù)就可以了。注意數(shù)組的從開始,而正整數(shù)從開始,所以重寫排列的時候要注意換成,而就是從開始的數(shù)組中的元素。 Problem Given an unsorted integer array, find the first missing positive integer. Example Given [1,2,0] re...
摘要:代碼映射法復(fù)雜度時間空間思路核心思想就是遍歷數(shù)組時,將每個元素,和以該元素為下標的元素進行置換,比如第一個元素是,就將它置換到下標為的地方,而原本下標為的地方的元素就換到第一個來。 Missing Number Given an array containing n distinct numbers taken from 0, 1, 2, ..., n, find the one t...
摘要:題目要求扭動序列是指數(shù)組中的相鄰兩個元素的差保證嚴格的正負交替,如數(shù)組中相鄰兩個元素的差為,滿足扭動序列的要求。現(xiàn)在要求從一個數(shù)組中,找到長度最長的扭動子序列,并返回其長度。即前一個元素和當前元素構(gòu)成下降序列,因此代碼如下 題目要求 A sequence of numbers is called a wiggle sequence if the differences between ...
閱讀 2477·2023-04-26 02:18
閱讀 1269·2021-10-14 09:43
閱讀 3836·2021-09-26 10:00
閱讀 6981·2021-09-22 15:28
閱讀 2547·2019-08-30 15:54
閱讀 2610·2019-08-30 15:52
閱讀 483·2019-08-29 11:30
閱讀 3473·2019-08-29 11:05