Move Zeroes


質問する

Given an integer array nums, move all 0's to the end of it while maintaining the relative order of the non-zero elements.

Note that you must do this in-place without making a copy of the array.

Example 1:

Input: nums = [0,1,0,3,12]
Output: [1,3,12,0,0]
Example 2:

Input: nums = [0]
Output: [0]

Constraints:

1 <= nums.length <= 104
-231 <= nums[i] <= 231 - 1

初めての試み

var moveZeroes = function (nums) {
    for (let i = 0; i < nums.length; i++) {
        if (nums[i] === 0) {
            nums.splice(i, 1);
            nums.push(0);
        }
      i--
    }
    return nums;
 };
𘥬▼0が現れた場合、spliceとpushを使用して0をその位置から取り外し、コードを記述して後ろに貼り付ける繰り返し文を返します.
i-で再びその位置から検索を開始しようとしたが、最初の要素が0であればインデックス-1から検索を開始し、Timeoutとして処理する😹

に答える

var moveZeroes = function (nums) {
    for (let i = nums.length - 1; i >= 0; i--) {
        if (nums[i] === 0) {
            nums.splice(i, 1);
            nums.push(0);
        }
    }
    return nums;
 };
𕼧いろいろ试してみましたが、后から缲り返すと、最初の试みで出会った问题が解决したようです.
問題は解決しましたが、まだあいまいなので、もう一度デバッグする必要があります.