-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStack1.java
More file actions
83 lines (83 loc) · 1.51 KB
/
Stack1.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
import java.util.*;
class Stack1
{
static Scanner sc=new Scanner(System.in);
static Node top;
static class Node
{
int data;
Node next;
Node(int d)
{
data = d;
next = null;
}
}
public static void isEmpty(Stack1 s)
{
if(top==null)
{
System.out.println("empty");
}
else
{
System.out.println("not empty");
}
}
public static void peek(Stack1 s)
{
if(top!=null)
{
System.out.println(top.data);
}
else{
System.out.println("empty");
}
}
public static void push(int d)
{
Node n = new Node(d);
if(top==null)
{
top = n;
}
else
{
n.next = top;
top = n;
}
}
public static void pop()
{
if(top==null)
{
System.out.println("empty");
return;
}
top = top.next;
}
public static void display(Stack1 s)
{
Node temp = top;
while(temp!=null)
{
System.out.print(temp.data+" ");
temp = temp.next;
}
}
public static void main(String[] pavan)
{
Stack1 s1 = new Stack1();
push(10);
push(20);
push(30);
display(s1);
peek(s1);
isEmpty(s1);
pop();
pop();
pop();
pop();
pop();
}
}