自己尝试用js实现了数据结构的二叉查找树。

  1. // node
  2. function Node(data) {
  3. this.data = data;
  4. this.lc = null;
  5. this.rc = null;
  6. }
  7.  
  8. // BST
  9. function BST() {
  10. this.root = null;
  11. }
  12. //======================create root node======================
  13. BST.prototype.create = function(num) {
  14. this.root = new Node(num);
  15. }
  16. // ======================add tree node=========================
  17. BST.prototype.insert = function(root, num) {
  18. var node = new Node(num);
  19.  
  20. if(root.data < node.data) {
  21. if(!root.rc)
  22. root.rc = node;
  23. else
  24. this.insert(root.rc, num);
  25. } else {
  26. if(!root.lc)
  27. root.lc = node;
  28. else
  29. this.insert(root.lc, num);
  30. }
  31. }
  32.  
  33. var bst = new BST();
  34. var arr = [5,3,6,7,4,1,8];
  35.  
  36. // create root node
  37. bst.create(arr[0]);
  38. // create tree
  39. for(var i = 1; i < arr.length; i++) {
  40. bst.insert(bst.root, arr[i]);
  41. }

  42. console.log(bst.root);

第二种

  1. // node
  2. function Node(data) {
  3. this.data = data;
  4. this.lc = null;
  5. this.rc = null;
  6. }
  7.  
  8. // BST
  9. function BST() {
  10. this.root = null;
  11. }
  12.  
  13. // add tree node
  14. BST.prototype.insert = function(num, bst) {
  15. var node = new Node(num);
  16. var isRootTree = (bst && bst.hasOwnProperty('root')); // 判断传入的是一棵树还是一个节点
  17. var root = isRootTree ? bst.root : bst;
  18.  
  19. if(isRootTree && !root) { // 如果传入的参数为树且该树的root为null
  20. bst.root = node; // 初始化root,不能用root = node,
  21. // 因为这样不会改变bst.root,而是另root变量重新指向了一个新node节点
  22. } else {
  23. var target = root.data < num ? 'rc' : 'lc'; // 避免bst为null带来的error
  24. root[target] == null ? root[target] = node : this.insert(num, root[target]);
  25. }
  26. };
  27.  
  28. var bst = new BST();
  29. var arr = [5,9,6,7,4,1,8];
  30.  
  31. for(var i = 0; i < arr.length; i++) {
  32. bst.insert(arr[i], bst);
  33. }
  34. console.log(bst.root);

第三种  通过迭代

  1. // node
  2. function Node(data) {
  3. this.data = data;
  4. this.left = null;
  5. this.rifht = null;
  6. }
  7.  
  8. // BST
  9. function BST() {
  10. this.root = null;
  11. }
  12. BST.prototype.insert = function(data){
  13. var node = new Node(data, null, null);
  14. if(this.root == null){
  15. this.root = node;
  16. }
  17. else{
  18. var currNode = this.root;
  19. var parent;
  20.  
  21. while(true){
  22. parent = currNode;
  23. if(data < currNode.data){
  24. currNode = currNode.left;
  25. if(currNode == null){
  26. parent.left = node;
  27. break;
  28. }
  29. }
  30. else{
  31. currNode = currNode.right;
  32. if(currNode == null){
  33. parent.right = node;
  34. break;
  35. }
  36. }
  37. }
  38. }
  39. };
  40.  
  41. BST.prototype.orderVisit = function(root) {
  42. if(root) {
  43. this.orderVisit(root.left);
  44. console.log(root.data);
  45. this.orderVisit(root.right);
  46. }
  47. };
  48.  
  49. var arr = [5,4,6,3,7,2,8];
  50. var bst = new BST();
  51.  
  52. for(var i = 0; i < arr.length; i++)
  53. bst.insert(arr[i]);
  54.  
  55. bst.orderVisit(bst.root);

JavaScript之BST的更多相关文章

  1. 数据结构之二叉搜索树(BST)--JavaScript实现

    原理: 叉排序树的查找过程和次优二叉树类似,通常采取二叉链表作为二叉排序树的存储结构.中序遍历二叉排序树可得到一个关键字的有序序列,一个无序序列可以通过构造一棵二叉排序树变成一个有序序列,构造树的过程 ...

  2. javascript数据结构与算法-- 二叉树

    javascript数据结构与算法-- 二叉树 树是计算机科学中经常用到的一种数据结构.树是一种非线性的数据结构,以分成的方式存储数据,树被用来存储具有层级关系的数据,比如文件系统的文件,树还被用来存 ...

  3. 第一章:javascript: 数据结构与算法

    在前端工程师中,常常有一种声音,我们为什么要学数据结构与算法,没有数据结构与算法,我们一样很好的完成工作.实际上,算法是一个宽泛的概念,我们写的任何程序都可以称为算法,甚至往冰箱里放大象,也要通过开门 ...

  4. JavaScript数据结构——树

    树:非顺序数据结构,对于存储需要快速查找的数据非常有用. 二叉树:二叉树中的节点最多只能有两个子节点(左侧子节点和右侧子节点).这些定义有助于我们写出更高效的向/从树中插入.查找和删除节点的算法. 二 ...

  5. JavaScript数据结构 (手打代码)

    array: 数组创建: ); //创建一个长度为6的数组 ,,,,,); 数组方法: var str="I love javascript"; var single=str.sp ...

  6. JavaScript的数据结构和算法

    所有JavaScript对象都有hasOwnProperty(value)的方法,用来返回一个表明对象是不是具有这个value Key值属性的布尔值. javaScript的方法 具有delete的方 ...

  7. JavaScript笔记 #07# 用js写算法

    算法盒子初代(为了提高学习算法的热情...) 效果图: 所有代码放在单个html中: <!DOCTYPE html> <html> <head> <meta ...

  8. javascript数据结构与算法---二叉树(删除节点)

    javascript数据结构与算法---二叉树(删除节点) function Node(data,left,right) { this.data = data; this.left = left; t ...

  9. javascript数据结构与算法---二叉树(查找最小值、最大值、给定值)

    javascript数据结构与算法---二叉树(查找最小值.最大值.给定值) function Node(data,left,right) { this.data = data; this.left ...

随机推荐

  1. Keras:基于Theano和TensorFlow的深度学习库

    catalogue . 引言 . 一些基本概念 . Sequential模型 . 泛型模型 . 常用层 . 卷积层 . 池化层 . 递归层Recurrent . 嵌入层 Embedding 1. 引言 ...

  2. SpiderMonkey js引擎的静态编译与使用

    原文出处: http://yaolixing.oltag.com/gns-8ABFFE2D-EB1E-44FA-9118-217ED7959536.html 几百KB的跨平台js引擎,是不是您心之所想 ...

  3. scrapy使用PhantomJS爬取数据

    环境:python2.7+scrapy+selenium+PhantomJS 内容:测试scrapy+PhantomJS 爬去内容:涉及到js加载更多的页面 原理:配置文件打开中间件+修改proces ...

  4. ActiveMQ进阶学习

    本文主要讲述ActiveMQ与spring整合的方案.介绍知识点包括spring,jms,activemq基于配置文件模式管理消息,消息监听器类型,消息转换类介绍,spring对JMS事物管理. 1. ...

  5. 入门干货之用DVG打造你的项目主页-Docfx、Vs、Github

    由于这三项技术涉及到的要点以及内容较多,希望大家有空能自己挖掘一下更多更深的用法. 0x01.介绍 VS,即VS2017以及以上版本,宇宙最好的IDE,集成了宇宙最有前景的平台,前阶段也支持了宇宙最好 ...

  6. For循环将将数字集合分类写入字典

    有以下数字集合[11,22,33,44,55,66,77,88,99,25,35,45,66,88],将所有大于66的值保存至字典的第一个key中,将小于66的值保存至第二个key的值中.即{'k1' ...

  7. 让 MyBatis Generator 变的更简单

    MyBatis 是一个 Java 的 ORM 框架,ORM 的出现就是为了简化开发.最初的开发方式是业务逻辑和数据库查询逻辑是分开的,或者在程序中编写 sql 语句,或者调用 sql 存储过程.这样导 ...

  8. webp图像批量转换软件推荐——XnConvert

    XnConvert是一款简单易用的批量图像格式转换软件,其所支持图片格式有JPG.PNG.TIFF.GIF.RAW.JPEG2000.WebP.OpenEXR等等.你可以轻松的实现图像格式的转换.缩放 ...

  9. faster-rcnn系列笔记(一)

    目录: 1. 序言 2.正文 2.1  关于ROI 2.2  关于RPN 2.3 关于anchor 3. 关于数据集合制作 4. 关于参数设置 5. 参考 1.序言 叽歪一下目标检测这个模型吧,这篇笔 ...

  10. Beyond Globally Optimal: Focused Learning

    这里对WWW 2017文章<Beyond Globally Optimal: Focused Learning for Improved Recommendations>进行一个简单的分析 ...