gpt4 book ai didi

java - Java中BST的层序遍历

转载 作者:行者123 更新时间:2023-11-29 05:12:05 24 4
gpt4 key购买 nike

我正在尝试对以下 BST 进行层序遍历。

BST bst = new BST();
int [] arr = {12, 15, 7, 3, 81, 9, 36, 23, 33, 41, 4};
for (int i = 0; i <arr.length; i++) {
bst.add(arr[i]);
}

这是我的代码。

public static void levelOrderTraversal(Node root){
if(root == null) return;
Queue<Node> queue = new ArrayDeque<Node>();
queue.add(root);
while(!queue.isEmpty()){
Node current = queue.peek();
System.out.print(current.getData() + " ");
if (current.left != null)
queue.add(current.left);
if (current.right != null){
queue.add(current.right);
}
queue.poll();
}
}

我得到的输出是

12 7 15 3 9 81 4 36 23 41 33 

这显然不是正确的 BFS。我哪里错了。

最佳答案

你的遍历函数是正确的。您可能需要查看此在线工具

https://www.cs.usfca.edu/~galles/visualization/BST.html

它还提供插入、删除和查找过程的可视化。这是生成的树:

enter image description here

关于java - Java中BST的层序遍历,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28075175/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com