Files
hello-algo/ja/codes/javascript/chapter_tree/binary_tree_bfs.js
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

35 lines
1.1 KiB
JavaScript
Raw 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.js
* Created Time: 2022-12-04
* Author: IsChristina (christinaxia77@foxmail.com)
*/
const { arrToTree } = require('../modules/TreeNode');
const { printTree } = require('../modules/PrintUtil');
/* レベル順走査 */
function levelOrder(root) {
// キューを初期化し、ルートノードを追加する
const queue = [root];
// 走査順序を保存するためのリストを初期化する
const list = [];
while (queue.length) {
let node = queue.shift(); // デキュー
list.push(node.val); // ノードの値を保存する
if (node.left) queue.push(node.left); // 左子ノードをキューに追加
if (node.right) queue.push(node.right); // 右子ノードをキューに追加
}
return list;
}
/* Driver Code */
/* 二分木を初期化 */
// ここでは、配列から直接二分木を生成する関数を利用する
const root = arrToTree([1, 2, 3, 4, 5, 6, 7]);
console.log('\n二分木を初期化\n');
printTree(root);
/* レベル順走査 */
const list = levelOrder(root);
console.log('\nレベル順走査のード出力シーケンス = ' + list);