- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStack1.java
More file actions
Latest commit
83 lines (83 loc) · 1.51 KB
/
Copy pathStack1.java
File metadata and controls
83 lines (83 loc) · 1.51 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
importjava.util.*;
classStack1
{
staticScannersc=newScanner(System.in);
staticNodetop;
staticclassNode
{
intdata;
Nodenext;
Node(intd)
{
data = d;
next = null;
}
}
publicstaticvoidisEmpty(Stack1s)
{
if(top==null)
{
System.out.println("empty");
}
else
{
System.out.println("not empty");
}
}
publicstaticvoidpeek(Stack1s)
{
if(top!=null)
{
System.out.println(top.data);
}
else{
System.out.println("empty");
}
}
publicstaticvoidpush(intd)
{
Noden = newNode(d);
if(top==null)
{
top = n;
}
else
{
n.next = top;
top = n;
}
}
publicstaticvoidpop()
{
if(top==null)
{
System.out.println("empty");
return;
}
top = top.next;
}
publicstaticvoiddisplay(Stack1s)
{
Nodetemp = top;
while(temp!=null)
{
System.out.print(temp.data+" ");
temp = temp.next;
}
}
publicstaticvoidmain(String[] pavan)
{
Stack1s1 = newStack1();
push(10);
push(20);
push(30);
display(s1);
peek(s1);
isEmpty(s1);
pop();
pop();
pop();
pop();
pop();
}
}