Leetcode#41 First Missing Positive
Github
Archive
Github
Archive
Leetcode#41 First Missing Positive
XGFan
/
2020-10-16
hard
type
status
date
slug
summary
tags
category
icon
password
寻找缺失的正整数,这个思路非常有趣,将数组中的每个正整数都放在其自然顺序的下标位置中。即下标为0的放1,下标为1的放2,下标为2的放3……,重复的数和负数都不用理会,经过这么一番整理之后。数组应该看起来是这样的。
代码如下
Loading...
← Back
↑ Top