·
·
文章目录
  1. 题目介绍
  2. 复杂度
  3. 解题思路

Remove Element

题目介绍

LeetCode 27. Remove Element

复杂度

时间复杂度: O(n), 空间复杂度: O(1)

解题思路

使用两个指针,一个快指针 i 和一个慢指针 k 。i 每次移动一步,而 k 只在添加新的被需要的值时才移动一步。

解决这类问题的关键是:确定两个指针的移动策略。

1
2
3
4
5
6
7
8
9
10
11
12
class Solution {
func removeElement(_ nums: inout [Int], _ val: Int) -> Int {
var k = 0
for i in 0..<nums.count {
if nums[i] != val {
nums[k] = nums[i]
k += 1
}
}
return k
}
}
**版权声明**

Ivan’s Blog by Ivan Ye is licensed under a Creative Commons BY-NC-ND 4.0 International License.
叶帆创作并维护的叶帆的博客博客采用创作共用保留署名-非商业-禁止演绎4.0国际许可证

本文首发于Ivan’s Blog | 叶帆的博客博客( http://yeziahehe.com ),版权所有,侵权必究。

本文链接:http://yeziahehe.com/2020/03/08/RemoveElement/

支持一下
扫一扫,支持yeziahehe
  • 微信扫一扫
  • 支付宝扫一扫