-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathStackL.java
83 lines (72 loc) · 1.29 KB
/
StackL.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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
/*
Copyright (C) Deepali Srivastava - All Rights Reserved
This code is part of DSA course available on CourseGalaxy.com
*/
package stackLinked;
import java.util.EmptyStackException;
public class StackL
{
private Node top;
public StackL()
{
top=null;
}
public int size()
{
int s=0;
Node p=top;
while(p!=null)
{
p=p.link;
s++;
}
return s;
}
public void push(int x)
{
Node temp = new Node(x);
temp.link=top;
top=temp;
}
public int pop()
{
int x;
if(isEmpty())
{
System.out.println("Stack Underflow\n");
throw new EmptyStackException();
}
x=top.info;
top=top.link;
return x;
}
public int peek()
{
if(isEmpty())
{
System.out.println("Stack Underflow\n");
throw new EmptyStackException();
}
return top.info;
}
public boolean isEmpty()
{
return (top==null);
}
public void display()
{
Node p=top;
if(isEmpty())
{
System.out.println("Stack is empty");
return;
}
System.out.println("Stack is : ");
while(p!=null)
{
System.out.println(p.info + " ");
p=p.link;
}
System.out.println();
}
}