Files
hello-algo/ja/codes/java/chapter_tree/binary_tree_dfs.java
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

69 lines
1.9 KiB
Java
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_dfs.java
* Created Time: 2022-11-25
* Author: krahets (krahets@163.com)
*/
package chapter_tree;
import utils.*;
import java.util.*;
public class binary_tree_dfs {
// 走査順序を格納するリストを初期化
static ArrayList<Integer> list = new ArrayList<>();
/* 先行順走査 */
static void preOrder(TreeNode root) {
if (root == null)
return;
// 訪問順序:根ノード -> 左部分木 -> 右部分木
list.add(root.val);
preOrder(root.left);
preOrder(root.right);
}
/* 中順走査 */
static void inOrder(TreeNode root) {
if (root == null)
return;
// 訪問優先順: 左部分木 -> 根ノード -> 右部分木
inOrder(root.left);
list.add(root.val);
inOrder(root.right);
}
/* 後順走査 */
static void postOrder(TreeNode root) {
if (root == null)
return;
// 訪問優先順: 左部分木 -> 右部分木 -> 根ノード
postOrder(root.left);
postOrder(root.right);
list.add(root.val);
}
public static void main(String[] args) {
/* 二分木を初期化 */
// ここでは、配列から直接二分木を生成する関数を利用する
TreeNode root = TreeNode.listToTree(Arrays.asList(1, 2, 3, 4, 5, 6, 7));
System.out.println("\n二分木を初期化\n");
PrintUtil.printTree(root);
/* 先行順走査 */
list.clear();
preOrder(root);
System.out.println("\n先行順走査のード出力シーケンス = " + list);
/* 中順走査 */
list.clear();
inOrder(root);
System.out.println("\n中間順走査のード出力シーケンス = " + list);
/* 後順走査 */
list.clear();
postOrder(root);
System.out.println("\n後行順走査のード出力シーケンス = " + list);
}
}