這篇文章將為大家詳細講解有關(guān)js什么合并兩個有序數(shù)組,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。
成都創(chuàng)新互聯(lián)是專業(yè)的安康網(wǎng)站建設(shè)公司,安康接單;提供網(wǎng)站制作、網(wǎng)站建設(shè),網(wǎng)頁設(shè)計,網(wǎng)站設(shè)計,建網(wǎng)站,PHP網(wǎng)站建設(shè)等專業(yè)做網(wǎng)站服務(wù);采用PHP框架,可快速的進行安康網(wǎng)站開發(fā)網(wǎng)頁制作和功能擴展;專業(yè)做搜索引擎喜愛的網(wǎng)站,專業(yè)的做網(wǎng)站團隊,希望更多企業(yè)前來合作!
1、新建空數(shù)組res存儲最終排序后的數(shù)組。
2、比較兩個有序數(shù)組的頭部,年輕人出隊推進res。
3、如果兩個數(shù)組仍然值得,重復(fù)第二步。
實例
Array.prototype.mergeSort = function () { const rec = (arr) => { if (arr.length === 1) { return arr; } const mid = Math.floor(arr.length / 2); const left = arr.slice(0, mid); const right = arr.slice(mid, arr.length); const orderLeft = rec(left); const orderRight = rec(right); const res = []; while (orderLeft.length || orderRight.length) { if (orderLeft.length && orderRight.length) { res.push( orderLeft[0] < orderRight[0] ? orderLeft.shift() : orderRight.shift() ); } else if (orderLeft.length) { res.push(orderLeft.shift()); } else if (orderRight.length) { res.push(orderRight.shift()); } } return res; }; const res = rec(this); res.forEach((n, i) => { this[i] = n; }); }; const arr = [5, 4, 3, 2, 1]; arr.mergeSort();
關(guān)于“js什么合并兩個有序數(shù)組”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,使各位可以學(xué)到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。