You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
1.4 KiB
43 lines
1.4 KiB
/**
|
|
* File: binary_tree_bfs.java
|
|
* Created Time: 2022-11-25
|
|
* Author: krahets (krahets@163.com)
|
|
*/
|
|
|
|
package chapter_tree;
|
|
|
|
import utils.*;
|
|
import java.util.*;
|
|
|
|
public class binary_tree_bfs {
|
|
/* Level-order traversal */
|
|
static List<Integer> levelOrder(TreeNode root) {
|
|
// Initialize queue, add root node
|
|
Queue<TreeNode> queue = new LinkedList<>();
|
|
queue.add(root);
|
|
// Initialize a list to store the traversal sequence
|
|
List<Integer> list = new ArrayList<>();
|
|
while (!queue.isEmpty()) {
|
|
TreeNode node = queue.poll(); // Queue dequeues
|
|
list.add(node.val); // Save node value
|
|
if (node.left != null)
|
|
queue.offer(node.left); // Left child node enqueues
|
|
if (node.right != null)
|
|
queue.offer(node.right); // Right child node enqueues
|
|
}
|
|
return list;
|
|
}
|
|
|
|
public static void main(String[] args) {
|
|
/* Initialize binary tree */
|
|
// Use a specific function to convert an array into a binary tree
|
|
TreeNode root = TreeNode.listToTree(Arrays.asList(1, 2, 3, 4, 5, 6, 7));
|
|
System.out.println("\nInitialize binary tree\n");
|
|
PrintUtil.printTree(root);
|
|
|
|
/* Level-order traversal */
|
|
List<Integer> list = levelOrder(root);
|
|
System.out.println("\nPrint sequence of nodes from level-order traversal = " + list);
|
|
}
|
|
}
|