Conversation
题解一源码分析对于`i >= right`的讨论,认为没有必要。因为`for 循环`保证了 `i` 每次都增加`1`,而 `right` 是满足条件才增加`1`,所以`i >= right`恒成立,只需要 `if (nums[i] < k)` 就够了。 另外,`nums[i]` 与 `nums[right]` 的 `swap` 操作,可以加上 `if (i != right)` 限定,避免了自己与自己的交换,代码也更好理解~
Owner
|
同意~ 👍 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
题解一源码分析对于
i >= right的讨论,认为没有必要。因为for 循环保证了i每次都增加1,而right是满足条件才增加1,所以i >= right恒成立,只需要if (nums[i] < k)就够了。另外,
nums[i]与nums[right]的swap操作,可以加上if (i != right)限定,避免了自己与自己的交换,代码也更好理解~