其他分享
首页 > 其他分享> > 【力扣】283. 移动零

【力扣】283. 移动零

作者:互联网

 这道题暂时用取巧的办法写了,就是把所有 0 都先删除,然后在数组后面补上删掉的 0 元素。以后学会了其他方法再做补充吧。

代码: 取巧写法(PHP)

class Solution {

    /**
     * @param Integer[] $nums
     * @return NULL
     */
    function moveZeroes(&$nums) {
        $length = count($nums);

        foreach($nums as $key => $value) {
            if ($value === 0) {
                unset($nums[$key]);
            }
        }

        $new_length = count($nums);

        if ($length != $new_length) {
            $arr = [];
            $arr = array_pad($arr, $length - $new_length, 0);
            $nums = array_merge($nums, $arr);
        }
    }
}

解释: 没啥好解释的,取巧而已。。。

测试结果:

执行用时:44 ms, 在所有 PHP 提交中击败了9.55%的用户

内存消耗:17.3 MB, 在所有 PHP 提交中击败了5.02%的用户

通过测试用例:74 / 74

标签:arr,PHP,nums,取巧,力扣,length,new,283,移动
来源: https://blog.csdn.net/e1373773/article/details/120482584