中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

利用JavaScript怎么實現一個等分數組

發布時間:2020-12-14 14:12:11 來源:億速云 閱讀:412 作者:Leah 欄目:開發技術

本篇文章給大家分享的是有關利用JavaScript怎么實現一個等分數組,小編覺得挺實用的,因此分享給大家學習,希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。

1. 將數組分為兩個相等的部分

我們可以分兩步將數組分成兩半:

使用length/2和Math.ceil()方法找到數組的中間索引

使用中間索引和Array.splice()方法獲得數組等分的部分

Math.ceil() 函數返回大于或等于一個給定數字的最小整數。

const list = [1, 2, 3, 4, 5, 6];
const middleIndex = Math.ceil(list.length / 2);

const firstHalf = list.splice(0, middleIndex);  
const secondHalf = list.splice(-middleIndex);

console.log(firstHalf); // [1, 2, 3]
console.log(secondHalf); // [4, 5, 6]
console.log(list);    // []

Array.splice() 方法通過刪除,替換或添加元素來更改數組的內容。 而 Array.slice() 方法會先對數組一份拷貝,在操作。

  • list.splice(0, middleIndex) 從數組的0索引處刪除前3個元素,并將其返回。

  • splice(-middleIndex)從數組中刪除最后3個元素并返回它。

在這兩個操作結束時,由于我們已經從數組中刪除了所有元素,所以原始數組是空的。

另請注意,在上述情況下,元素數為偶數,如果元素數為奇數,則前一半將有一個額外的元素。

const list = [1, 2, 3, 4, 5];
const middleIndex = Math.ceil(list.length / 2);

list.splice(0, middleIndex); // returns [1, 2, 3]
list.splice(-middleIndex);  // returns [4, 5]

2.Array.slice 和 Array.splice

有時我們并不希望改變原始數組,這個可以配合 Array.slice() 來解決這個問題:

const list = [1, 2, 3, 4, 5, 6];
const middleIndex = Math.ceil(list.length / 2);

const firstHalf = list.slice().splice(0, middleIndex);  
const secondHalf = list.slice().splice(-middleIndex);

console.log(firstHalf); // [1, 2, 3]
console.log(secondHalf); // [4, 5, 6]
console.log(list);    // [1, 2, 3, 4, 5, 6];

我們看到原始數組保持不變,因為在使用Array.slice()刪除元素之前,我們使用Array.slice()復制了原始數組。

3.將數組分成三等分

const list = [1, 2, 3, 4, 5, 6, 7, 8, 9];
const threePartIndex = Math.ceil(list.length / 3);

const thirdPart = list.splice(-threePartIndex);
const secondPart = list.splice(-threePartIndex);
const firstPart = list;   

console.log(firstPart); // [1, 2, 3]
console.log(secondPart); // [4, 5, 6]
console.log(thirdPart); // [7, 8, 9]

簡單解釋一下上面做了啥:

  • 首先使用st.splice(-threePartIndex)提取了ThirdPart,它刪除了最后3個元素[7、8、9],此時list僅包含前6個元素[1、2、3、4、5、6] 。

  • 接著,使用list.splice(-threePartIndex)提取了第二部分,它從剩余list = [1、2、3、4、5、6](即[4、5、6])中刪除了最后3個元素,list僅包含前三個元素[1、2、3],即firstPart。

4. Array.splice() 更多用法

現在,我們來看一看 Array.splice() 更多用法,這里因為我不想改變原數組,所以使用了 Array.slice(),如果智米們想改變原數組可以進行刪除它。

const list = [1, 2, 3, 4, 5, 6, 7, 8, 9];

獲取數組的第一個元素

list.slice().splice(0, 1) // [1]

獲取數組的前5個元素

list.slice().splice(0, 5) // [1, 2, 3, 4, 5]

獲取數組前5個元素之后的所有元素

list.slice().splice(5) // 6, 7, 8, 9]

獲取數組的最后一個元素

list.slice().splice(-1)  // [9]

獲取數組的最后三個元素

list.slice().splice(-3)  // [7, 8, 9]

以上就是利用JavaScript怎么實現一個等分數組,小編相信有部分知識點可能是我們日常工作會見到或用到的。希望你能通過這篇文章學到更多知識。更多詳情敬請關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

利辛县| 轮台县| 剑河县| 抚顺县| 泰来县| 栾川县| 酒泉市| 祁门县| 增城市| 章丘市| 汾阳市| 金阳县| 凤山县| 凤冈县| 墨脱县| 民和| 宜都市| 水富县| 巧家县| 乳山市| 菏泽市| 奉化市| 乐亭县| 华宁县| 东源县| 南京市| 东光县| 营山县| 白城市| 丹阳市| 台北市| 公安县| 南昌市| 海口市| 焉耆| 武功县| 枞阳县| 华池县| 乡宁县| 盐边县| 会宁县|