-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathnth node
80 lines (74 loc) · 1.75 KB
/
nth node
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
import java.util.ArrayList;
import java.util.List;
class node{
int data;
node left;
node right;
node(int data){
this.data=data;
left=null;
right=null;
}
}
class stack{
List<node> stack=new ArrayList<node>();
void add(node n){
stack.add(n);
// for(int i=0;i<stack.size();i++){
// System.out.print(stack.get(i).data+",");
// }
// System.out.println();
}
node pop(){
// for(int i=0;i<stack.size();i++){
// System.out.print(stack.get(i).data+",");
// }
// System.out.println();
return stack.remove(stack.size()-1);
}
boolean isEmpty(){
return stack.isEmpty();
}
}
class tree{
node root;
node inorder(int num){
stack s=new stack();
node l=root;
int count=1;
while(l.left!=null){
s.add(l);
l=l.left;
}
s.add(l);
while(!s.isEmpty()){
node n=s.pop();
if(count==num){
return n;
}
count++;
if(n.right!=null){
s.add(n.right);
if(n.right.left!=null){
node temp=n.right.left;
do{
s.add(temp);
temp=temp.left;
}while(temp!=null);
}
}
}
return null;
}
}
public class Implementation {
public static void main(String []args){
tree t=new tree();
t.root=new node(7);
t.root.left=new node(2);
t.root.right=new node(3);
t.root.right.left=new node(8);
t.root.right.right=new node(5);
System.out.println(t.inorder(3).data);
}
}