Files
hello-algo/ja/codes/csharp/chapter_tree/binary_tree_bfs.cs
Yudong Jin d7b2277d2b Re-translate the Japanese version (#1871)
* Retranslate Japanese docs with GPT-5.4

* Retranslate Japanese code with GPT-5.4
2026-03-30 07:30:15 +08:00

41 lines
1.4 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
/**
* File: binary_tree_bfs.cs
* Created Time: 2022-12-23
* Author: haptear (haptear@hotmail.com)
*/
namespace hello_algo.chapter_tree;
public class binary_tree_bfs {
/* レベル順走査 */
List<int> LevelOrder(TreeNode root) {
// キューを初期化し、ルートノードを追加する
Queue<TreeNode> queue = new();
queue.Enqueue(root);
// 走査順序を保存するためのリストを初期化する
List<int> list = [];
while (queue.Count != 0) {
TreeNode node = queue.Dequeue(); // デキュー
list.Add(node.val!.Value); // ノードの値を保存する
if (node.left != null)
queue.Enqueue(node.left); // 左子ノードをキューに追加
if (node.right != null)
queue.Enqueue(node.right); // 右子ノードをキューに追加
}
return list;
}
[Test]
public void Test() {
/* 二分木を初期化 */
// ここでは、配列から直接二分木を生成する関数を利用する
TreeNode? root = TreeNode.ListToTree([1, 2, 3, 4, 5, 6, 7]);
Console.WriteLine("\n二分木を初期化\n");
PrintUtil.PrintTree(root);
List<int> list = LevelOrder(root!);
Console.WriteLine("\nレベル順走査のード出力シーケンス = " + string.Join(",", list));
}
}