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

溫馨提示×

溫馨提示×

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

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

JavaScript中二叉樹如何實現查找最小值、最大值、給定值算法

發布時間:2021-07-22 14:30:57 來源:億速云 閱讀:336 作者:小新 欄目:web開發

小編給大家分享一下JavaScript中二叉樹如何實現查找最小值、最大值、給定值算法,希望大家閱讀完這篇文章之后都有所收獲,下面讓我們一起去探討吧!

具體如下:

function Node(data,left,right) {
  this.data = data;
  this.left = left;
  this.right = right;
  this.show = show;
}
function show() {
  return this.data;
}
function BST() {
  this.root = null;
  this.insert = insert;
  this.preOrder = preOrder;
  this.inOrder = inOrder;
  this.postOrder = postOrder;
  this.getMin = getMin;//查找最小值
  this.getMax = getMax;//查找最大值
  this.find = find;//查找給定值
}
function insert(data) {
  var n = new Node(data,null,null);
  if(this.root == null) {
    this.root = n;
  }else {
    var current = this.root;
    var parent;
    while(current) {
      parent = current;
      if(data < current.data) {
        current = current.left;
        if(current == null) {
          parent.left = n;
          break;
        }
      }else {
        current = current.right;
        if(current == null) {
          parent.right = n;
          break;
        }
      }
    }
  }
}
// 中序遍歷
function inOrder(node) {
  if(!(node == null)) {
    inOrder(node.left);
    console.log(node.show());
    inOrder(node.right);
  }
}
// 先序遍歷
function preOrder(node) {
  if(!(node == null)) {
    console.log(node.show());
    preOrder(node.left);
    preOrder(node.right);
  }
}
// 后序遍歷
function postOrder(node) {
  if(!(node == null)) {
    postOrder(node.left);
    postOrder(node.right);
    console.log("后序遍歷"+node.show());
  }
}
/*
*查找BST上的最小值
*因為較小的值總是在左子節點上,在BST上查找最小值,只需要遍歷左子樹,直到找到最后一個節點。*/
function getMin(){
  var current = this.root;
  while(!(current.left == null)) {
    current = current.left;
  }
//  return current;//返回最小值所在的節點
  return current.data;//返回最小值
}
/*
 *查找BST上的最大值
 *因為較大的值總是在右子節點上,在BST上查找最大值,只需要遍歷右子樹,直到找到最后一個節點。*/
function getMax() {
  var current = this.root;
  while(!(current.right == null)) {
    current = current.right;
  }
//  return current;//返回最大值所在的節點
  return current.data;//返回最大值
}
/*
*查找給定值
*在BST上查找給定值,需要比較該值和當前節點上的值的大小。
*通過比較,就能確定如果給定值不在當前節點時,該向左遍歷還是向右遍歷。*/
function find(data) {
  var current = this.root;
  while(current != null) {
    if(current.data == data) {
      return current;
    }else if(data < current.data) {
      current = current.left;
    }else {
      current = current.right;
    }
  }
  return null;
}
var nums = new BST();
nums.insert(23);
nums.insert(45);
nums.insert(16);
nums.insert(37);
nums.insert(3);
nums.insert(99);
nums.insert(22);
var min = nums.getMin();
console.log("最小值為: " + min);
var max = nums.getMax();
console.log("最大值為: " + max);
var find = nums.find("88");
console.log( find);
if(find != null){
  console.log("給定值為: " + find.data);
  console.log("給定值為: " + find.show());
}
var find = nums.find("37");
console.log( find);
if(find != null){
  console.log("給定值為: " + find.data);
  console.log("給定值為: " + find.show());
}

運行結果:

JavaScript中二叉樹如何實現查找最小值、最大值、給定值算法

看完了這篇文章,相信你對“JavaScript中二叉樹如何實現查找最小值、最大值、給定值算法”有了一定的了解,如果想了解更多相關知識,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!

向AI問一下細節

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

AI

襄汾县| 岳阳市| 沁源县| 界首市| 钟祥市| 璧山县| 潜山县| 英吉沙县| 哈密市| 小金县| 杭锦后旗| 永德县| 杨浦区| 临江市| 永和县| 自贡市| 鸡西市| 教育| 黄大仙区| 定安县| 广河县| 周宁县| 南川市| 平遥县| 南城县| 松滋市| 乌兰县| 盱眙县| 新乡市| 措勤县| 乌鲁木齐县| 棋牌| 鄂尔多斯市| 丰城市| 沅陵县| 南投市| 左权县| 深泽县| 澄城县| 海南省| 宝山区|