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

  1. function Node(data,left,right) {
  2. this.data = data;
  3. this.left = left;
  4. this.right = right;
  5. this.show = show;
  6. }
  7.  
  8. function show() {
  9. return this.data;
  10. }
  11.  
  12. function BST() {
  13. this.root = null;
  14. this.insert = insert;
  15. this.preOrder = preOrder;
  16. this.inOrder = inOrder;
  17. this.postOrder = postOrder;
  18. this.getMin = getMin;//查找最小值
  19. this.getMax = getMax;//查找最大值
  20. this.find = find;//查找给定值
  21. }
  22.  
  23. function insert(data) {
  24. var n = new Node(data,null,null);
  25. if(this.root == null) {
  26. this.root = n;
  27. }else {
  28. var current = this.root;
  29. var parent;
  30. while(current) {
  31. parent = current;
  32. if(data < current.data) {
  33. current = current.left;
  34. if(current == null) {
  35. parent.left = n;
  36. break;
  37. }
  38. }else {
  39. current = current.right;
  40. if(current == null) {
  41. parent.right = n;
  42. break;
  43. }
  44. }
  45. }
  46. }
  47. }
  48. // 中序遍历
  49. function inOrder(node) {
  50. if(!(node == null)) {
  51. inOrder(node.left);
  52. console.log(node.show());
  53. inOrder(node.right);
  54. }
  55. }
  56.  
  57. // 先序遍历
  58. function preOrder(node) {
  59. if(!(node == null)) {
  60. console.log(node.show());
  61. preOrder(node.left);
  62. preOrder(node.right);
  63. }
  64. }
  65.  
  66. // 后序遍历
  67. function postOrder(node) {
  68. if(!(node == null)) {
  69. postOrder(node.left);
  70. postOrder(node.right);
  71. console.log("后序遍历"+node.show());
  72. }
  73. }
  74.  
  75. /*
  76. *查找BST上的最小值
  77. *因为较小的值总是在左子节点上,在BST上查找最小值,只需要遍历左子树,直到找到最后一个节点。*/
  78. function getMin(){
  79. var current = this.root;
  80. while(!(current.left == null)) {
  81. current = current.left;
  82. }
  83. // return current;//返回最小值所在的节点
  84. return current.data;//返回最小值
  85. }
  86.  
  87. /*
  88. *查找BST上的最大值
  89. *因为较大的值总是在右子节点上,在BST上查找最大值,只需要遍历右子树,直到找到最后一个节点。*/
  90. function getMax() {
  91. var current = this.root;
  92. while(!(current.right == null)) {
  93. current = current.right;
  94. }
  95. // return current;//返回最大值所在的节点
  96. return current.data;//返回最大值
  97. }
  98.  
  99. /*
  100. *查找给定值
  101. *在BST上查找给定值,需要比较该值和当前节点上的值的大小。
  102. *通过比较,就能确定如果给定值不在当前节点时,该向左遍历还是向右遍历。*/
  103. function find(data) {
  104. var current = this.root;
  105. while(current != null) {
  106. if(current.data == data) {
  107. return current;
  108. }else if(data < current.data) {
  109. current = current.left;
  110. }else {
  111. current = current.right;
  112. }
  113. }
  114. return null;
  115. }
  116.  
  117. var nums = new BST();
  118. nums.insert(23);
  119. nums.insert(45);
  120. nums.insert(16);
  121. nums.insert(37);
  122. nums.insert(3);
  123. nums.insert(99);
  124. nums.insert(22);
  125. var min = nums.getMin();
  126. console.log("最小值为: " + min);
  127.  
  128. var max = nums.getMax();
  129. console.log("最大值为: " + max);
  130.  
  131. var find = nums.find("88");
  132. console.log( find);
  133. if(find != null){
  134. console.log("给定值为: " + find.data);
  135. console.log("给定值为: " + find.show());
  136. }
  137.  
  138. var find = nums.find("37");
  139. console.log( find);
  140. if(find != null){
  141. console.log("给定值为: " + find.data);
  142. console.log("给定值为: " + find.show());
  143. }

javascript数据结构与算法---二叉树(查找最小值、最大值、给定值)的更多相关文章

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

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

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

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

  3. javascript数据结构与算法--二叉树遍历(后序)

    javascript数据结构与算法--二叉树遍历(后序) 后序遍历先访问叶子节点,从左子树到右子树,再到根节点. /* *二叉树中,相对较小的值保存在左节点上,较大的值保存在右节点中 * * * */ ...

  4. javascript数据结构与算法--二叉树遍历(先序)

    javascript数据结构与算法--二叉树遍历(先序) 先序遍历先访问根节点, 然后以同样方式访问左子树和右子树 代码如下: /* *二叉树中,相对较小的值保存在左节点上,较大的值保存在右节点中 * ...

  5. javascript数据结构与算法--二叉树遍历(中序)

    javascript数据结构与算法--二叉树遍历(中序) 中序遍历按照节点上的键值,以升序访问BST上的所有节点 代码如下: /* *二叉树中,相对较小的值保存在左节点上,较大的值保存在右节点中 * ...

  6. javascript数据结构与算法--二叉树(插入节点、生成二叉树)

    javascript数据结构与算法-- 插入节点.生成二叉树 二叉树中,相对较小的值保存在左节点上,较大的值保存在右节点中 /* *二叉树中,相对较小的值保存在左节点上,较大的值保存在右节点中 * * ...

  7. javascript数据结构与算法---检索算法(顺序查找、最大最小值、自组织查询)

    javascript数据结构与算法---检索算法(顺序查找.最大最小值.自组织查询) 一.顺序查找法 /* * 顺序查找法 * * 顺序查找法只要从列表的第一个元素开始循环,然后逐个与要查找的数据进行 ...

  8. javascript数据结构与算法---检索算法(二分查找法、计算重复次数)

    javascript数据结构与算法---检索算法(二分查找法.计算重复次数) /*只需要查找元素是否存在数组,可以先将数组排序,再使用二分查找法*/ function qSort(arr){ if ( ...

  9. javascript数据结构与算法--散列

    一:javascript数据结构与算法--散列  一:什么是哈希表? 哈希表也叫散列表,是根据关键码值(key,value)而直接进行访问的数据结构,它是通过键码值映射到表中一个位置来访问记录的,散列 ...

随机推荐

  1. 文字过多以省略号代替,放在文字上会显示title信息提示

    第一种: <td style="text-align:left; word-wrap:break-word;" title="${b.remarks}"& ...

  2. MySQL 安装与使用(一)

    操作系统:CentOS release 5.10 (Final) 文件准备: MySQL-server-community-5.1.73-1.rhel5.i386.rpm MySQL-client-c ...

  3. Ubuntu 12.04 下安装 JDK 7

    原文链接:http://hi.baidu.com/sanwer/item/370a23330a6a7b23b3c0c533 方法一1.下载 JDK 7从http://www.oracle.com/te ...

  4. 15-BOM

    BOM的介绍 JavaScript基础分为三个部分: ECMAScript:JavaScript的语法标准.包括变量.表达式.运算符.函数.if语句.for语句等. DOM:文档对象模型,操作网页上的 ...

  5. spring整合redis之hello

    1.pom.xml文件 <dependencies> <!-- spring核心包 --> <dependency> <groupId>org.spri ...

  6. (线段树 区间运算求点)Flowers -- hdu -- 4325

    http://acm.hdu.edu.cn/showproblem.php?pid=4325 Flowers Time Limit: 4000/2000 MS (Java/Others)    Mem ...

  7. 中国移动物联网平台数据转发 c# 控制台程序

    using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.N ...

  8. ace富文本编辑器

    在线文本编辑器(ACE Editor) ACE是一个实现了语法着色功能的基于Web的代码编辑器,具有良好的代码提示功能和大量的主题. 一.资源获取 官方网址:https://ace.c9.io/ Gi ...

  9. hdu 3910 Liang Guo Sha

    题目链接:hdu 3910 Liang Guo Sha 题目大意:Alice和Bob这两个小伙伴又发明了一种新游戏, 叫两国杀, 每个人手上有两张牌,“杀” 和“闪”, 然后有三个数值A,B和C, 当 ...

  10. AngularJS 模块及provide

    一.模块 模块是一些功能的集合,如控制器.服务.过滤器.指令等子元素组成的整体. 1.注册和使用 模块相当于是一个注册表,保存着名字和编程元素的对照表,可存入也可取出. angular.module( ...