码迷,mamicode.com
首页 > 其他好文 > 详细

数据结构_二叉树

时间:2020-02-24 20:34:37      阅读:55      评论:0      收藏:0      [点我收藏+]

标签:str   const   节点   class   style   col   nbsp   null   结构   

//二叉树BST
  
  class Node {
    constructor (data) {
      this.data = data
      this.left = null
      this.right = null
    }
  }

  class BST {
    constructor () {
      this.root = null
    }
    insert (data) {
      let newNode = new Node(data)
      if (!this.root) this.root = newNode
      else {
        this.insertNode(this.root, newNode)
      }
    }
    //插入节点的辅助函数
    insertNode (root, newNode) {
      if (newNode.data < root.data) {
        if (root.left == null) root.left = newNode
        else this.insertNode(root.left, newNode) 
      }else {
        if (root.right == null) root.right = newNode
        else this.insertNode(root.right, newNode)
      }
    }
  }
  let tree = new BST()

 

数据结构_二叉树

标签:str   const   节点   class   style   col   nbsp   null   结构   

原文地址:https://www.cnblogs.com/JunLan/p/12358467.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!