• 数据结构——二叉树搜索树(二叉搜索树的概念、实现、先序遍历、中序遍历、后序遍历)


    目录

    一、二叉搜索树的概念

    1、什么是二叉搜索树?

    2、二叉搜索树的操作

    二、二叉搜索树的实现

    1、创建二叉搜索树  向树种插入数据

    2、遍历二叉搜索树

    1)先序遍历

    2)中序遍历

    3)后序遍历


    一、二叉搜索树的概念

    1、什么是二叉搜索树?

    二叉搜索树(BST,Binary Search Tree),也称二叉排序树或二叉查找树

     二叉搜索树是一颗二叉树, 可以为空;如果不为空,满足以下性质:

    - 非空左子树的所有键值小于其根结点的键值。
    - 非空右子树的所有键值大于其根结点的键值。
    - 左、右子树本身也都是二叉搜索树。

     二叉搜索树的特点:

    - 二叉搜索树的特点就是相对较小的值总是保存在左结点上, 相对较大的值总是保存在右结点上.
    - 那么利用这个特点, 我们可以做什么事情呢?
    - 查找效率非常高, 这也是二叉搜索树中, 搜索的来源.

    2、二叉搜索树的操作

    -  `insert(key)`:向树中插入一个新的键。
    -  `search(key)`:在树中查找一个键,如果结点存在,则返回`true`;如果不存在,则返回`false`。
    -  `preOrderTraverse`:通过先序遍历方式遍历所有结点。
    -  `inOrderTraverse`:通过中序遍历方式遍历所有结点。
    -  `postOrderTraverse`:通过后序遍历方式遍历所有结点。
    -  `min`:返回树中最小的值/键。
    -  `max`:返回树中最大的值/键。
    -  `remove(key)`:从树中移除某个键。

    二、二叉搜索树的实现

    1、创建二叉搜索树  向树种插入数据

    1. class Node {
    2. constructor(data) {
    3. this.left = null;
    4. this.data = data;
    5. this.right = null;
    6. }
    7. }
    8. class BST {
    9. constructor() {
    10. this.root = null;
    11. }
    12. insert(ele) {
    13. // 创建新节点
    14. let newnode = new Node(ele);
    15. // console.log(newnode);
    16. if (this.root == null) { // 空树
    17. this.root = newnode
    18. } else {
    19. this.insertNode(this.root, newnode)
    20. }
    21. }
    22. insertNode(root, newnode) {
    23. if (newnode.data < root.data) { // 放左边
    24. if (root.left == null) {
    25. root.left = newnode
    26. } else {
    27. this.insertNode(root.left, newnode)
    28. }
    29. } else { //放右边
    30. if (root.right == null) {
    31. root.right = newnode
    32. } else {
    33. this.insertNode(root.right, newnode)
    34. }
    35. }
    36. }
    37. }

    2、遍历二叉搜索树

    1)先序遍历

    遍历过程为:

    - ①访问根结点;
    - ②先序遍历其左子树;
    - ③先序遍历其右子树。

    2)中序遍历

    遍历过程为:

    - ①中序遍历其左子树;
    - ②访问根结点;
    - ③中序遍历其右子树。

    3)后序遍历

    遍历过程为:

    - ①后序遍历其左子树;
    - ②后序遍历其右子树;
    - ③访问根结点。

     

    1. class Node {
    2. constructor(data) {
    3. this.left = null;
    4. this.data = data;
    5. this.right = null;
    6. }
    7. }
    8. class BST {
    9. constructor() {
    10. this.root = null;
    11. }
    12. insert(ele) {
    13. // 创建新节点
    14. let newnode = new Node(ele);
    15. // console.log(newnode);
    16. if (this.root == null) { // 空树
    17. this.root = newnode
    18. } else {
    19. this.insertNode(this.root, newnode)
    20. }
    21. }
    22. insertNode(root, newnode) {
    23. if (newnode.data < root.data) { // 放左边
    24. if (root.left == null) {
    25. root.left = newnode
    26. } else {
    27. this.insertNode(root.left, newnode)
    28. }
    29. } else { //放右边
    30. if (root.right == null) {
    31. root.right = newnode
    32. } else {
    33. this.insertNode(root.right, newnode)
    34. }
    35. }
    36. }
    37. // 前序遍历
    38. preOrderTraversal() {
    39. this.preOrderTraversalNode(this.root)
    40. }
    41. preOrderTraversalNode(root) {
    42. if (root != null) { // {left:node,data:11,right:node} != null
    43. // 1.根
    44. console.log(root.data); //11 7 15
    45. // 2.前序遍历左子树
    46. this.preOrderTraversalNode(root.left)
    47. // 3.前序遍历右子树
    48. this.preOrderTraversalNode(root.right)
    49. }
    50. }
    51. // 中序遍历
    52. inOrderTraversal(){
    53. this.inOrderTraversalNode(this.root)
    54. }
    55. inOrderTraversalNode(root){
    56. if(root !=null){
    57. // 1.中序遍历左子树
    58. this.inOrderTraversalNode(root.left)
    59. // 2.根
    60. console.log(root.data);
    61. // 3.中序遍历右子树
    62. this.inOrderTraversalNode(root.right)
    63. }
    64. }
    65. // 后序遍历
    66. postOrderTraversal(){
    67. this.postOrderTraversalNode(this.root)
    68. }
    69. postOrderTraversalNode(root){
    70. if(root !=null){
    71. // 1.后序遍历左子树
    72. this.postOrderTraversalNode(root.left)
    73. // 2.后序遍历右子树
    74. this.postOrderTraversalNode(root.right)
    75. // 3.根
    76. console.log(root.data);
    77. }
    78. }
    79. }
    80. let bst = new BST();
    81. bst.insert(11)
    82. bst.insert(7)
    83. bst.insert(15)
    84. bst.insert(5)
    85. bst.insert(3)
    86. bst.insert(9)
    87. bst.insert(8)
    88. bst.insert(10)
    89. bst.insert(13)
    90. bst.insert(12)
    91. bst.insert(14)
    92. bst.insert(20)
    93. bst.insert(18)
    94. bst.insert(25)
    95. console.log(bst.postOrderTraversal());
  • 相关阅读:
    .NET关于 跳过SSL中遇到的问题
    JAVA实现数学函数图像
    [开发] Java文件操作
    vue + openlayer 按路径移动
    深入解析Spring Boot中最常用注解的使用方式(下篇)
    「MySQL高级篇」MySQL之MVCC实现原理&&事务隔离级别的实现
    RT-Thread 内核启动流程
    OS·03包管理器
    mybatis实现插入数据时获取主键
    HandlerMapping.URI_TEMPLATE_VARIABLES_ATTRIBUTE
  • 原文地址:https://blog.csdn.net/qq_52301431/article/details/126510218