溫馨提示×

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

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

JavaScript怎么實(shí)現(xiàn)DOM樹的深度優(yōu)先遍歷和廣度優(yōu)先遍歷

發(fā)布時(shí)間:2020-10-22 14:30:07 來(lái)源:億速云 閱讀:235 作者:小新 欄目:web開發(fā)

這篇文章主要介紹了JavaScript怎么實(shí)現(xiàn)DOM樹的深度優(yōu)先遍歷和廣度優(yōu)先遍歷,具有一定借鑒價(jià)值,需要的朋友可以參考下。希望大家閱讀完這篇文章后大有收獲。下面讓小編帶著大家一起了解一下。

深度優(yōu)先遍歷
// 非遞歸,首次傳入的node值為DOM樹中的根元素點(diǎn),即html
// 調(diào)用:deep(document.documentElement)
function deep (node) {
  var res = []; // 存儲(chǔ)訪問(wèn)過(guò)的節(jié)點(diǎn)
  if (node != null) {
    var nodeList = []; // 存儲(chǔ)需要被訪問(wèn)的節(jié)點(diǎn)
    nodeList.push(node);
    while (nodeList.length > 0) {
      var currentNode = nodeList.pop(); // 當(dāng)前正在被訪問(wèn)的節(jié)點(diǎn)
      res.push(currentNode);
      var childrens = currentNode.children;
      for (var i = childrens.length - 1; i >= 0; i--) {
        nodeList.push(childrens[i]);
      }
    }
  }
  return res;
}

// 使用遞歸
var res = []; // 存儲(chǔ)已經(jīng)訪問(wèn)過(guò)的節(jié)點(diǎn)
function deep (node) {
  if (node != null) { // 該節(jié)點(diǎn)存在
    res.push(node);
    // 使用childrens變量存儲(chǔ)node.children,提升性能,不使用node.children.length,從而不必在for循環(huán)遍歷時(shí)每次都去獲取子元素
    for (var i = 0,  childrens = node.children; i < childrens.length; i++) {
      deep(childrens[i]);
    }
  }
  return res;
}
廣度優(yōu)先遍歷
// 遞歸
var res = [];
function wide (node) {
  if (res.indexOf(node) === -1) {
    res.push(node); // 存入根節(jié)點(diǎn)
  }
  var childrens = node.children;
  for (var i = 0; i < childrens.length; i++) {
    if (childrens[i] != null) {
      res.push(childrens[i]); // 存入當(dāng)前節(jié)點(diǎn)的所有子元素
    }
  }
  for (var j = 0; j < childrens.length; j++) {
    wide(childrens[j]); // 對(duì)每個(gè)子元素遞歸
  }
  return res;
}

// 非遞歸
function wide (node) {
  var res = [];
  var nodeList = []; // 存儲(chǔ)需要被訪問(wèn)的節(jié)點(diǎn)
  nodeList.push(node);
  while (nodeList.length > 0) {
    var currentNode = nodeList.shift(0);
    res.push(currentNode);
    for (var i = 0, childrens = currentNode.children; i < childrens.length; i++) {
      nodeList.push(childrens[i]);
    }   
  }
  return res;
}

感謝你能夠認(rèn)真閱讀完這篇文章,希望小編分享JavaScript怎么實(shí)現(xiàn)DOM樹的深度優(yōu)先遍歷和廣度優(yōu)先遍歷內(nèi)容對(duì)大家有幫助,同時(shí)也希望大家多多支持億速云,關(guān)注億速云行業(yè)資訊頻道,遇到問(wèn)題就找億速云,詳細(xì)的解決方法等著你來(lái)學(xué)習(xí)!

向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