Jump to content
  • 0

Работа с массивами и цикл for


Нарек
 Share

Question

Здравствуйте. Есть задача, пройтись по массиву и сортировать так, чтобы все 0 были в конце массива.

Написал такой код

'use strict'var arr = [1, 5, 0, 10, 0, 65, 0];function moveZeros(some) {    let str;    for(let i = 0; i < some.length; i++) {      if(some[i] == 0) {        str = some.splice([i], 1);        some = some.concat(str);      }    }  return some;}console.log(moveZeros(arr));

В данном примере все сортирует правильно, но если массив будет вида скажем [0, 0, 0, 1], то не будет правильно и на выходе получим [0, 1, 0, 0] вместо [1, 0, 0, 0]

 

Например имеем такую ситуацию, что var arr = [0, 0, 0, 1]

Цикл в первый раз пробежался по массиву, первый (нулевой) элемент равен 0, и код будет выполнятся, после чего получим массив уже вида [0, 0, 1, 0]. Вопрос, следующий этап цикла пробежит по массиву [0, 0, 1, 0] или по изначальному [0, 0, 0, 1] ? В чем моя ошибка?

Edited by Нарек
Link to comment
Share on other sites

Recommended Posts

  • 0
var arr = [0, 0, 4, 8, 0, 15, 16, 0, 0, 23, 42, 0]    , l = arr.length;while (l--) {    if ( arr[l] === 0 ) {        arr.push( arr.splice( l, 1 ) );    }}console.log( arr.join(' ') );
var arr = [0, 0, 4, 8, 0, 15, 16, 0, 0, 23, 42, 0]    , l = arr.length;while (l--) {    if ( arr[l] === 0 ) {        arr.push( arr.splice( l, 1 )[0] );    }}console.log( arr.join(' ') );

Вот так будет работать) Подсказали)

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy