문제 난이도 : Easy
문제 유형 : Data Structures - Tree
문제 설명 간략 :
전위 순회로 binary tree를 출력하라
전위 순회 (ROOT - LEFT - RIGHT)
제약사항
- 1 <= Nodes in the tree <= 500
자바 풀이
/* you only have to complete the function given below.
Node is defined as
class Node {
int data;
Node left;
Node right;
}
*/
public static void preOrder(Node root) {
if(root==null){
return;
}
System.out.print(root.data+" ");
preOrder(root.left);
preOrder(root.right);
}
출처