美文网首页算法每日一刷
LeetCode算法题-26. 删除排序数组中的重复项(Swif

LeetCode算法题-26. 删除排序数组中的重复项(Swif

作者: entre_los_dos | 来源:发表于2019-10-17 12:45 被阅读0次

    来源:力扣(LeetCode)
    链接:https://leetcode-cn.com/problems/remove-duplicates-from-sorted-array
    著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。

    题目

    给定一个排序数组,你需要在原地删除重复出现的元素,使得每个元素只出现一次,返回移除后数组的新长度。

    不要使用额外的数组空间,你必须在原地修改输入数组并在使用 O(1) 额外空间的条件下完成。

    示例 1:

    给定数组 nums = [1,1,2], 
    
    函数应该返回新的长度 2, 并且原数组 nums 的前两个元素被修改为 1, 2。 
    
    你不需要考虑数组中超出新长度后面的元素。
    

    示例 2:

    给定 nums = [0,0,1,1,1,2,2,3,3,4],
    
    函数应该返回新的长度 5, 并且原数组 nums 的前五个元素被修改为 0, 1, 2, 3, 4。
    
    你不需要考虑数组中超出新长度后面的元素。
    

    说明:

    为什么返回数值是整数,但输出的答案是数组呢?
    
    请注意,输入数组是以“引用”方式传递的,这意味着在函数里修改输入数组对于调用者是可见的。
    

    你可以想象内部操作如下:

    // nums 是以“引用”方式传递的。也就是说,不对实参做任何拷贝
    int len = removeDuplicates(nums);
    
    // 在函数里修改输入数组对于调用者是可见的。
    // 根据你的函数返回的长度, 它会打印出数组中该长度范围内的所有元素。
    for (int i = 0; i < len; i++) {
        print(nums[i]);
    }
    

    方法-记录上一个值,遍历数组,删除和上一值相等的。

       func removeDuplicates(_ nums: inout [Int]) -> Int {
            
            var lastNum: Int?
            var currentIndex = 0
            
            while currentIndex < nums.count  {
                if nums[currentIndex] == lastNum {
                    
                    nums.remove(at: currentIndex)
                }else {
                    lastNum = nums[currentIndex]
                    currentIndex += 1
                }
            }
        
            return nums.count
        }
    

    方法-替换

      func removeDuplicates(_ nums: inout [Int]) -> Int {
            
            if nums.count == 0 {
                return 0
            }
            
            var lastNum: Int = nums.first!
            var currentIndex = 0
            var lastIndex = 0
            
            
            while lastNum != nums.last {
                
                
                if nums[currentIndex] != lastNum {
                    
                    lastIndex += 1
                    nums[lastIndex] = nums[currentIndex]
                }
                lastNum = nums[currentIndex]
                currentIndex += 1
            }
    
            return lastIndex + 1
        }
    

    相关文章

      网友评论

        本文标题:LeetCode算法题-26. 删除排序数组中的重复项(Swif

        本文链接:https://www.haomeiwen.com/subject/wugymctx.html