溫馨提示×

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

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

JS實(shí)現(xiàn)的合并兩個(gè)有序鏈表算法示例

發(fā)布時(shí)間:2020-10-03 15:09:07 來(lái)源:腳本之家 閱讀:351 作者:gqj.cn 欄目:web開發(fā)

本文實(shí)例講述了JS實(shí)現(xiàn)的合并兩個(gè)有序鏈表算法。分享給大家供大家參考,具體如下:

將兩個(gè)有序鏈表合并為一個(gè)新的有序鏈表并返回。新鏈表是通過(guò)拼接給定的兩個(gè)鏈表的所有節(jié)點(diǎn)組成的。

示例:

輸入:1->2->4, 1->3->4
輸出:1->1->2->3->4->4

JS實(shí)現(xiàn)的合并兩個(gè)有序鏈表算法示例

可以直接運(yùn)行的方案:

<script>
function Node(element) {
  this.element = element;//當(dāng)前節(jié)點(diǎn)的元素
  this.next = null;//下一個(gè)節(jié)點(diǎn)鏈接
}
function List() {
  this.head = new Node("head");//頭節(jié)點(diǎn)
  this.find = find;//查找節(jié)點(diǎn)
  this.insert = insert;//插入節(jié)點(diǎn)
  this.remove = remove;//刪除節(jié)點(diǎn)
  this.display = display;//顯示鏈表
  this.findPrevious = findPrevious; //查找前一個(gè)節(jié)點(diǎn)
}
//下面的函數(shù)是操作方法:對(duì)應(yīng)List類構(gòu)造函數(shù)中的名稱
//查找給定節(jié)點(diǎn)
function find(item) {
  var currNode = this.head;
  while(currNode.element != item) {
    currNode = currNode.next;
  }
  return currNode;
}
//向鏈表插入一個(gè)節(jié)點(diǎn)
function insert(newElement,item) {
  var newNode = new Node(newElement);
  var current = this.find(item);
  if(current == null)
    return console.log("can't find the item");
  newNode.next = current.next;
  current.next = newNode;
}
//刪除節(jié)點(diǎn)
function remove(item) {
  var prevNode = this.findPrevious(item);
  if(prevNode.next != null)
    prevNode.next = prevNode.next.next;
}
//從鏈表中刪除節(jié)點(diǎn)時(shí),我們先要找個(gè)待刪除節(jié)點(diǎn)的前一個(gè)節(jié)點(diǎn),找到后,我們修改它的 next 屬性,使其不在指向待刪除的節(jié)點(diǎn),而是待刪除節(jié)點(diǎn)的下一個(gè)節(jié)點(diǎn)。那么,我們就得需要定義一個(gè) findPrevious 方法遍歷鏈表,檢查每一個(gè)節(jié)點(diǎn)的下一個(gè)節(jié)點(diǎn)是否存儲(chǔ)待刪除的數(shù)據(jù)。如果找到,返回該節(jié)點(diǎn),這樣就可以修改它的 next 屬性了。
//查找?guī)h除節(jié)點(diǎn)的前一個(gè)節(jié)點(diǎn)
function findPrevious(item) {
  var currNode = this.head;
  while(currNode.next != null && currNode.next.element != item) {
    currNode = currNode.next;
  }
  return currNode;
}
//顯示鏈表元素
function display() {
  var current = this.head;
  while(current.next != null) {
    console.log(current.next.element);
    current = current.next;
  }
}
/**
 * @param {Node} l1
 * @param {Node} l2
 * @return {Node}
 */
var mergeTwoLists = function(l1, l2) {
  // 模仿鏈表的數(shù)據(jù)結(jié)構(gòu)
  var mergedHead = { element : -1, next : null },
    cur = mergedHead;
  while (l1 && l2){
    if(l1.element <= l2.element){
      cur.next = l1;
      l1 = l1.next;
    }
    else {
      cur.next = l2;
      l2 = l2.next;
    }
    cur = cur.next;
  }
  cur.next = l1 || l2
  return mergedHead.next;
};
let list1 = new List();
list1.insert(1,'head');
list1.insert(2,1);
list1.insert(4,2);
console.log(list1.display());
let list2 = new List();
list2.insert(1,'head');
list2.insert(3,1);
list2.insert(4,3);
console.log(list2.display());
console.log(mergeTwoLists(list1.head,list2.head))
</script>

感興趣的朋友可以使用在線HTML/CSS/JavaScript代碼運(yùn)行工具:http://tools.jb51.net/code/HtmlJsRun測(cè)試上述代碼,查看運(yùn)行效果。

更多關(guān)于JavaScript相關(guān)內(nèi)容感興趣的讀者可查看本站專題:《JavaScript數(shù)學(xué)運(yùn)算用法總結(jié)》、《JavaScript數(shù)據(jù)結(jié)構(gòu)與算法技巧總結(jié)》、《JavaScript數(shù)組操作技巧總結(jié)》、《JavaScript排序算法總結(jié)》、《JavaScript遍歷算法與技巧總結(jié)》、《JavaScript查找算法技巧總結(jié)》及《JavaScript錯(cuò)誤與調(diào)試技巧總結(jié)》

希望本文所述對(duì)大家JavaScript程序設(shè)計(jì)有所幫助。

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI