-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPreOrderBinaryTree.java
More file actions
128 lines (97 loc) · 2.95 KB
/
PreOrderBinaryTree.java
File metadata and controls
128 lines (97 loc) · 2.95 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
// Preorder Binary Tree
// Send Feedback
// You are given a ‘Binary Tree’.
// Return the preorder traversal of the Binary Tree.
// Example:
// Input: Consider the following Binary Tree:
// Example
// Output:
// Following is the preorder traversal of the given Binary Tree: [1, 2, 5, 3, 6,
// 4]
// Input Format:
// The only line contains elements in the level order form. The line consists of
// values of nodes separated by a single space. In case a node is null, we take
// -1 in its place.
// For example, the input for the tree depicted in the below image will be:
// alt text
// 1
// 2 3
// 4 -1 5 6
// -1 7 -1 -1 -1 -1
// -1 -1
// Explanation :
// Level 1 :
// The root node of the tree is 1
// Level 2 :
// Left child of 1 = 2
// Right child of 1 = 3
// Level 3 :
// Left child of 2 = 4
// Right child of 2 = null (-1)
// Left child of 3 = 5
// Right child of 3 = 6
// Level 4 :
// Left child of 4 = null (-1)
// Right child of 4 = 7
// Left child of 5 = null (-1)
// Right child of 5 = null (-1)
// Left child of 6 = null (-1)
// Right child of 6 = null (-1)
// Level 5 :
// Left child of 7 = null (-1)
// Right child of 7 = null (-1)
// The first not-null node(of the previous level) is treated as the parent of
// the first two nodes of the current level. The second not-null node (of the
// previous level) is treated as the parent node for the next two nodes of the
// current level and so on.
// The input ends when all nodes at the last level are null(-1).
// The sequence will be put together in a single line separated by a single
// space. Hence, for the above-depicted tree, the input will be given as:
// 1 2 3 4 -1 5 6 -1 7 -1 -1 -1 -1 -1 -1
// Output Format:
// Return an array representing the preorder traversal of the given binary tree.
// Note :
// You do not need to print anything; it has already been taken care of. Just
// implement the given function.
// Sample Input 1:
// 1 2 3 5 4 6 7 -1 -1 -1 -1 -1 -1 -1 -1
// Sample Output 1:
// 1 2 5 4 3 6 7
// Explanation of Sample Input 1:
// The Binary Tree given in the input is as follows:
// Sample1
// Sample Input 2:
// 5 6 10 2 3 -1 -1 -1 -1 -1 9 -1 -1
// Sample Output 2:
// 5 6 2 3 9 10
// Explanation of Sample Input 2:
// The Binary Tree given in the input is as follows:
// Sample2
// Expected Time Complexity:
// Try to do this in O(n).
// Constraints:
// 1 <= n <= 100000
// where 'n' is the number of nodes in the binary tree.
// Time Limit: 1 sec
// Following the structure used for Binary Tree
class BinaryTreeNode<T> {
T data;
BinaryTreeNode<T> left;
BinaryTreeNode<T> right;
public BinaryTreeNode(T data) {
this.data = data;
this.left = null;
this.right = null;
}
}
class Solution {
public static void preOrder(BinaryTreeNode<Integer> root) {
// Your code goes here
if (root == null) {
return;
}
System.out.print(root.data + " ");
preOrder(root.left);
preOrder(root.right);
}
}