zoukankan      html  css  js  c++  java
  • 数组-(Remove Element)移除指定数字返回新的数组

    '''
    Given an array and a value, remove all occurrences of that value in place and return the new length.
    
    The order of elements can be changed, and the elements after the new length don't matter.
    
    Example
    Given an array [0,4,4,0,0,2,4,4], value=4
    
    return 4 and front four elements of the array is [0,0,0,2]
    '''
    
    '''
    一句话总结:拿两个指示变量i,j从0开始,i只负责遍历所有的值,j负责保存不包含elem的索引,i循环完了j的长度就是新的数组长度,新的数组内容就是0:j
    '''
    
    
    class Solution:
        def call(self, arr, elem):
            i = 0
            j = 0
            while i < len(arr):
                # 如果相当则忽略,进入下一个位置
                if arr[i] == elem:
                    pass
                else:  # 如果不等,则加入新的以left为长度计算的arr
                    arr[j] = arr[i]
                    j += 1  # left长度加以
                i += 1  # 进入下一轮判断
            return (j, arr[0:j])
    
    
    s = Solution()
    print(s.call([0, 4, 4, 0, 0, 2, 4, 4, 1, 2, 3, 4, 8], 4))
    #(8, [0, 0, 0, 2, 1, 2, 3, 8])
  • 相关阅读:
    《大道至简》第一章 编程的精义
    java课堂练习7
    Java课后练习6
    Java课后练习5
    Java课后练习4
    Java课后练习3
    课堂练习
    求和程序实验报告
    大道至简第二章读后感
    课堂作业例子
  • 原文地址:https://www.cnblogs.com/onenoteone/p/12441718.html
Copyright © 2011-2022 走看看