-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPos-Ordem.java
66 lines (53 loc) · 1.63 KB
/
Pos-Ordem.java
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
// monte um código em java simples sem utilizar as bibliotecas em que o usuário insere os valor e apresente em arvore em pos-ordem
class Node {
int data;
Node left;
Node right;
public Node(int data) {
this.data = data;
left = null;
right = null;
}
}
public class ArvorePosOrdem {
static Node root;
public static void main(String[] args) {
buildTree();
System.out.println("Árvore em Ordem (Pós-Ordem):");
postOrderTraversal(root);
}
public static void buildTree() {
root = insertNode();
}
public static Node insertNode() {
System.out.print("Digite o valor do nó (ou -1 para nó nulo): ");
int value = readIntFromUser();
if (value == -1) {
return null;
}
Node newNode = new Node(value);
System.out.println("Inserir nó esquerdo de " + value + ":");
newNode.left = insertNode();
System.out.println("Inserir nó direito de " + value + ":");
newNode.right = insertNode();
return newNode;
}
public static void postOrderTraversal(Node node) {
if (node != null) {
postOrderTraversal(node.left);
postOrderTraversal(node.right);
System.out.print(node.data + " ");
}
}
public static int readIntFromUser() {
try {
byte[] buffer = new byte[16];
System.in.read(buffer);
String input = new String(buffer).trim();
return Integer.parseInt(input);
} catch (Exception e) {
e.printStackTrace();
}
return 0;
}
}