JavaScript之BST
自己尝试用js实现了数据结构的二叉查找树。
- // node
- function Node(data) {
- this.data = data;
- this.lc = null;
- this.rc = null;
- }
- // BST
- function BST() {
- this.root = null;
- }
- //======================create root node======================
- BST.prototype.create = function(num) {
- this.root = new Node(num);
- }
- // ======================add tree node=========================
- BST.prototype.insert = function(root, num) {
- var node = new Node(num);
- if(root.data < node.data) {
- if(!root.rc)
- root.rc = node;
- else
- this.insert(root.rc, num);
- } else {
- if(!root.lc)
- root.lc = node;
- else
- this.insert(root.lc, num);
- }
- }
- var bst = new BST();
- var arr = [5,3,6,7,4,1,8];
- // create root node
- bst.create(arr[0]);
- // create tree
- for(var i = 1; i < arr.length; i++) {
- bst.insert(bst.root, arr[i]);
- }
console.log(bst.root);
第二种
- // node
- function Node(data) {
- this.data = data;
- this.lc = null;
- this.rc = null;
- }
- // BST
- function BST() {
- this.root = null;
- }
- // add tree node
- BST.prototype.insert = function(num, bst) {
- var node = new Node(num);
- var isRootTree = (bst && bst.hasOwnProperty('root')); // 判断传入的是一棵树还是一个节点
- var root = isRootTree ? bst.root : bst;
- if(isRootTree && !root) { // 如果传入的参数为树且该树的root为null
- bst.root = node; // 初始化root,不能用root = node,
- // 因为这样不会改变bst.root,而是另root变量重新指向了一个新node节点
- } else {
- var target = root.data < num ? 'rc' : 'lc'; // 避免bst为null带来的error
- root[target] == null ? root[target] = node : this.insert(num, root[target]);
- }
- };
- var bst = new BST();
- var arr = [5,9,6,7,4,1,8];
- for(var i = 0; i < arr.length; i++) {
- bst.insert(arr[i], bst);
- }
- console.log(bst.root);
第三种 通过迭代
- // node
- function Node(data) {
- this.data = data;
- this.left = null;
- this.rifht = null;
- }
- // BST
- function BST() {
- this.root = null;
- }
- BST.prototype.insert = function(data){
- var node = new Node(data, null, null);
- if(this.root == null){
- this.root = node;
- }
- else{
- var currNode = this.root;
- var parent;
- while(true){
- parent = currNode;
- if(data < currNode.data){
- currNode = currNode.left;
- if(currNode == null){
- parent.left = node;
- break;
- }
- }
- else{
- currNode = currNode.right;
- if(currNode == null){
- parent.right = node;
- break;
- }
- }
- }
- }
- };
- BST.prototype.orderVisit = function(root) {
- if(root) {
- this.orderVisit(root.left);
- console.log(root.data);
- this.orderVisit(root.right);
- }
- };
- var arr = [5,4,6,3,7,2,8];
- var bst = new BST();
- for(var i = 0; i < arr.length; i++)
- bst.insert(arr[i]);
- bst.orderVisit(bst.root);
JavaScript之BST的更多相关文章
- 数据结构之二叉搜索树(BST)--JavaScript实现
原理: 叉排序树的查找过程和次优二叉树类似,通常采取二叉链表作为二叉排序树的存储结构.中序遍历二叉排序树可得到一个关键字的有序序列,一个无序序列可以通过构造一棵二叉排序树变成一个有序序列,构造树的过程 ...
- javascript数据结构与算法-- 二叉树
javascript数据结构与算法-- 二叉树 树是计算机科学中经常用到的一种数据结构.树是一种非线性的数据结构,以分成的方式存储数据,树被用来存储具有层级关系的数据,比如文件系统的文件,树还被用来存 ...
- 第一章:javascript: 数据结构与算法
在前端工程师中,常常有一种声音,我们为什么要学数据结构与算法,没有数据结构与算法,我们一样很好的完成工作.实际上,算法是一个宽泛的概念,我们写的任何程序都可以称为算法,甚至往冰箱里放大象,也要通过开门 ...
- JavaScript数据结构——树
树:非顺序数据结构,对于存储需要快速查找的数据非常有用. 二叉树:二叉树中的节点最多只能有两个子节点(左侧子节点和右侧子节点).这些定义有助于我们写出更高效的向/从树中插入.查找和删除节点的算法. 二 ...
- JavaScript数据结构 (手打代码)
array: 数组创建: ); //创建一个长度为6的数组 ,,,,,); 数组方法: var str="I love javascript"; var single=str.sp ...
- JavaScript的数据结构和算法
所有JavaScript对象都有hasOwnProperty(value)的方法,用来返回一个表明对象是不是具有这个value Key值属性的布尔值. javaScript的方法 具有delete的方 ...
- JavaScript笔记 #07# 用js写算法
算法盒子初代(为了提高学习算法的热情...) 效果图: 所有代码放在单个html中: <!DOCTYPE html> <html> <head> <meta ...
- javascript数据结构与算法---二叉树(删除节点)
javascript数据结构与算法---二叉树(删除节点) function Node(data,left,right) { this.data = data; this.left = left; t ...
- javascript数据结构与算法---二叉树(查找最小值、最大值、给定值)
javascript数据结构与算法---二叉树(查找最小值.最大值.给定值) function Node(data,left,right) { this.data = data; this.left ...
随机推荐
- Keras:基于Theano和TensorFlow的深度学习库
catalogue . 引言 . 一些基本概念 . Sequential模型 . 泛型模型 . 常用层 . 卷积层 . 池化层 . 递归层Recurrent . 嵌入层 Embedding 1. 引言 ...
- SpiderMonkey js引擎的静态编译与使用
原文出处: http://yaolixing.oltag.com/gns-8ABFFE2D-EB1E-44FA-9118-217ED7959536.html 几百KB的跨平台js引擎,是不是您心之所想 ...
- scrapy使用PhantomJS爬取数据
环境:python2.7+scrapy+selenium+PhantomJS 内容:测试scrapy+PhantomJS 爬去内容:涉及到js加载更多的页面 原理:配置文件打开中间件+修改proces ...
- ActiveMQ进阶学习
本文主要讲述ActiveMQ与spring整合的方案.介绍知识点包括spring,jms,activemq基于配置文件模式管理消息,消息监听器类型,消息转换类介绍,spring对JMS事物管理. 1. ...
- 入门干货之用DVG打造你的项目主页-Docfx、Vs、Github
由于这三项技术涉及到的要点以及内容较多,希望大家有空能自己挖掘一下更多更深的用法. 0x01.介绍 VS,即VS2017以及以上版本,宇宙最好的IDE,集成了宇宙最有前景的平台,前阶段也支持了宇宙最好 ...
- For循环将将数字集合分类写入字典
有以下数字集合[11,22,33,44,55,66,77,88,99,25,35,45,66,88],将所有大于66的值保存至字典的第一个key中,将小于66的值保存至第二个key的值中.即{'k1' ...
- 让 MyBatis Generator 变的更简单
MyBatis 是一个 Java 的 ORM 框架,ORM 的出现就是为了简化开发.最初的开发方式是业务逻辑和数据库查询逻辑是分开的,或者在程序中编写 sql 语句,或者调用 sql 存储过程.这样导 ...
- webp图像批量转换软件推荐——XnConvert
XnConvert是一款简单易用的批量图像格式转换软件,其所支持图片格式有JPG.PNG.TIFF.GIF.RAW.JPEG2000.WebP.OpenEXR等等.你可以轻松的实现图像格式的转换.缩放 ...
- faster-rcnn系列笔记(一)
目录: 1. 序言 2.正文 2.1 关于ROI 2.2 关于RPN 2.3 关于anchor 3. 关于数据集合制作 4. 关于参数设置 5. 参考 1.序言 叽歪一下目标检测这个模型吧,这篇笔 ...
- Beyond Globally Optimal: Focused Learning
这里对WWW 2017文章<Beyond Globally Optimal: Focused Learning for Improved Recommendations>进行一个简单的分析 ...