41:缺失的第一个正数

This commit is contained in:
huangge1199@hotmail.com 2021-04-23 22:04:11 +08:00
parent 56a4e0e7c2
commit 84fa669b79
2 changed files with 142 additions and 0 deletions

View File

@ -0,0 +1,104 @@
//给你一个未排序的整数数组 nums 请你找出其中没有出现的最小的正整数
//
//
//
// 进阶你可以实现时间复杂度为 O(n) 并且只使用常数级别额外空间的解决方案吗
//
//
//
// 示例 1
//
//
//输入nums = [1,2,0]
//输出3
//
//
// 示例 2
//
//
//输入nums = [3,4,-1,1]
//输出2
//
//
// 示例 3
//
//
//输入nums = [7,8,9,11,12]
//输出1
//
//
//
//
// 提示
//
//
// 0 <= nums.length <= 300
// -231 <= nums[i] <= 231 - 1
//
// Related Topics 数组
// 👍 1054 👎 0
package leetcode.editor.cn;
//41:缺失的第一个正数
public class FirstMissingPositive {
public static void main(String[] args) {
//测试代码
Solution solution = new FirstMissingPositive().new Solution();
solution.firstMissingPositive(new int[]{1,2,0});
}
//力扣代码
//leetcode submit region begin(Prohibit modification and deletion)
class Solution {
public int firstMissingPositive(int[] nums) {
boolean is = true;
for (int i = 0; i < nums.length; i++) {
if (nums[i] == 1) {
is = false;
}
if (nums[i] <= 0) {
nums[i] = 1;
}
}
if (is) {
return 1;
}
for (int i = 0; i < nums.length; i++) {
if (Math.abs(nums[i]) <= nums.length && nums[Math.abs(nums[i]) - 1] > 0) {
nums[Math.abs(nums[i]) - 1] *= -1;
}
}
for (int i = 1; i < nums.length; i++) {
if (nums[i] >= 0) {
return i + 1;
}
}
return nums.length + 1;
//未完成的
// int index;
// for (int i = 0; i < nums.length; i++) {
// if (nums[i] == i) {
// continue;
// }
// index = i;
// while (nums[index] != index && index >= 0 && index < nums.length) {
// int temp = nums[nums[index]];
// nums[nums[index]] = nums[index];
// index = temp;
// }
// if (nums[index] == nums.length) {
// nums[0] = nums[index];
// }
// }
// for (int i = 1; i < nums.length; i++) {
// if (nums[i] != i) {
// return i;
// }
// }
// return nums[0] == nums.length ? nums.length + 1 : nums.length;
}
}
//leetcode submit region end(Prohibit modification and deletion)
}

View File

@ -0,0 +1,38 @@
<p>给你一个未排序的整数数组 <code>nums</code> ,请你找出其中没有出现的最小的正整数。</p>
<p> </p>
<p><strong>进阶:</strong>你可以实现时间复杂度为 <code>O(n)</code> 并且只使用常数级别额外空间的解决方案吗?</p>
<p> </p>
<p><strong>示例 1</strong></p>
<pre>
<strong>输入:</strong>nums = [1,2,0]
<strong>输出:</strong>3
</pre>
<p><strong>示例 2</strong></p>
<pre>
<strong>输入:</strong>nums = [3,4,-1,1]
<strong>输出:</strong>2
</pre>
<p><strong>示例 3</strong></p>
<pre>
<strong>输入:</strong>nums = [7,8,9,11,12]
<strong>输出:</strong>1
</pre>
<p> </p>
<p><strong>提示:</strong></p>
<ul>
<li><code>0 <= nums.length <= 300</code></li>
<li><code>-2<sup>31</sup> <= nums[i] <= 2<sup>31</sup> - 1</code></li>
</ul>
<div><div>Related Topics</div><div><li>数组</li></div></div>\n<div><li>👍 1054</li><li>👎 0</li></div>