javascript数据结构与算法---二叉树(查找最小值、最大值、给定值)
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数据结构与算法-- 二叉树
javascript数据结构与算法-- 二叉树 树是计算机科学中经常用到的一种数据结构.树是一种非线性的数据结构,以分成的方式存储数据,树被用来存储具有层级关系的数据,比如文件系统的文件,树还被用来存 ...
- javascript数据结构与算法---二叉树(删除节点)
javascript数据结构与算法---二叉树(删除节点) function Node(data,left,right) { this.data = data; this.left = left; t ...
- javascript数据结构与算法--二叉树遍历(后序)
javascript数据结构与算法--二叉树遍历(后序) 后序遍历先访问叶子节点,从左子树到右子树,再到根节点. /* *二叉树中,相对较小的值保存在左节点上,较大的值保存在右节点中 * * * */ ...
- javascript数据结构与算法--二叉树遍历(先序)
javascript数据结构与算法--二叉树遍历(先序) 先序遍历先访问根节点, 然后以同样方式访问左子树和右子树 代码如下: /* *二叉树中,相对较小的值保存在左节点上,较大的值保存在右节点中 * ...
- javascript数据结构与算法--二叉树遍历(中序)
javascript数据结构与算法--二叉树遍历(中序) 中序遍历按照节点上的键值,以升序访问BST上的所有节点 代码如下: /* *二叉树中,相对较小的值保存在左节点上,较大的值保存在右节点中 * ...
- javascript数据结构与算法--二叉树(插入节点、生成二叉树)
javascript数据结构与算法-- 插入节点.生成二叉树 二叉树中,相对较小的值保存在左节点上,较大的值保存在右节点中 /* *二叉树中,相对较小的值保存在左节点上,较大的值保存在右节点中 * * ...
- javascript数据结构与算法---检索算法(顺序查找、最大最小值、自组织查询)
javascript数据结构与算法---检索算法(顺序查找.最大最小值.自组织查询) 一.顺序查找法 /* * 顺序查找法 * * 顺序查找法只要从列表的第一个元素开始循环,然后逐个与要查找的数据进行 ...
- javascript数据结构与算法---检索算法(二分查找法、计算重复次数)
javascript数据结构与算法---检索算法(二分查找法.计算重复次数) /*只需要查找元素是否存在数组,可以先将数组排序,再使用二分查找法*/ function qSort(arr){ if ( ...
- javascript数据结构与算法--散列
一:javascript数据结构与算法--散列 一:什么是哈希表? 哈希表也叫散列表,是根据关键码值(key,value)而直接进行访问的数据结构,它是通过键码值映射到表中一个位置来访问记录的,散列 ...
随机推荐
- 文字过多以省略号代替,放在文字上会显示title信息提示
第一种: <td style="text-align:left; word-wrap:break-word;" title="${b.remarks}"& ...
- MySQL 安装与使用(一)
操作系统:CentOS release 5.10 (Final) 文件准备: MySQL-server-community-5.1.73-1.rhel5.i386.rpm MySQL-client-c ...
- Ubuntu 12.04 下安装 JDK 7
原文链接:http://hi.baidu.com/sanwer/item/370a23330a6a7b23b3c0c533 方法一1.下载 JDK 7从http://www.oracle.com/te ...
- 15-BOM
BOM的介绍 JavaScript基础分为三个部分: ECMAScript:JavaScript的语法标准.包括变量.表达式.运算符.函数.if语句.for语句等. DOM:文档对象模型,操作网页上的 ...
- spring整合redis之hello
1.pom.xml文件 <dependencies> <!-- spring核心包 --> <dependency> <groupId>org.spri ...
- (线段树 区间运算求点)Flowers -- hdu -- 4325
http://acm.hdu.edu.cn/showproblem.php?pid=4325 Flowers Time Limit: 4000/2000 MS (Java/Others) Mem ...
- 中国移动物联网平台数据转发 c# 控制台程序
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.N ...
- ace富文本编辑器
在线文本编辑器(ACE Editor) ACE是一个实现了语法着色功能的基于Web的代码编辑器,具有良好的代码提示功能和大量的主题. 一.资源获取 官方网址:https://ace.c9.io/ Gi ...
- hdu 3910 Liang Guo Sha
题目链接:hdu 3910 Liang Guo Sha 题目大意:Alice和Bob这两个小伙伴又发明了一种新游戏, 叫两国杀, 每个人手上有两张牌,“杀” 和“闪”, 然后有三个数值A,B和C, 当 ...
- AngularJS 模块及provide
一.模块 模块是一些功能的集合,如控制器.服务.过滤器.指令等子元素组成的整体. 1.注册和使用 模块相当于是一个注册表,保存着名字和编程元素的对照表,可存入也可取出. angular.module( ...