-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIStack.java
More file actions
185 lines (158 loc) · 4.49 KB
/
Copy pathIStack.java
File metadata and controls
185 lines (158 loc) · 4.49 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
import java.io.*;
import java.util.*;
import java.text.*;
import java.math.*;
import java.util.regex.*;
interface IStack {
/*** Removes the element at the top of stack and returnsthat element.
* @return top of stack element, or through exception if empty
*/
public Object pop();
/*** Get the element at the top of stack without removing it from stack.
* @return top of stack element, or through exception if empty
*/
public Object peek();
/*** Pushes an item onto the top of this stack.
* @param object to insert*
*/
public void push(Object element);
/*** Tests if this stack is empty
* @return true if stack empty
*/
public boolean isEmpty();
public int size();
}
public class MyStack implements IStack {
public class SNode{
int data;
SNode next;
}
SNode head = null;
SNode tail = null;
int size = 0;
public void add(int element){
if(isEmpty()){
SNode tmp = new SNode();
tmp.data = element ;
head = tmp;
tail = tmp;
}
else{
SNode tmp = new SNode();
tmp.data = element;
tail.next = tmp;
tail = tmp;
}
}
public void print(){
SNode h = head ;
while (h != null){
if (h.next != null)
System.out.print(h.data + ", ");
else
System.out.print(h.data);
h = h.next;
}
}
public void clear(){
head = null;
tail= null;
size = 0;
print();
}
public boolean isEmpty(){
if(head == null) {return true;}
else{return false;}
}
public int size(){
int count = 0;
if (isEmpty()) {
count = 0;
} else {
SNode current = head;
while (current != null) {
count++;
current = current.next;
}
}
return count;
}
public void push(Object data){
SNode node = new SNode();
node.data = (int)data;
node.next = head;
head = node;
print();
}
public Object get(int index){
SNode ptr=head;
for(int i=0 ; i< index ; i++)
{
ptr=ptr.next;
}
return ptr.data;
}
public Object peek(){
if (isEmpty())
return ("Error");
else
return get(0);
}
public Object pop(){
if (isEmpty())
System.out.print("Error");
// SNode first = null;
// Object item = first.data; // save item to return
// first = first.next; // delete first node
else{
head = head.next;
System.out.print("[");
print();
System.out.print("]");
}
System.exit(0);
return pop();
}
public static void main(String[] args) {
/* Enter your code here. Read input from STDIN. Print output to STDOUT. Your class should be named Solution. */
/* Enter your code here. Read input from STDIN. Print output to STDOUT. */
MyStack LL = new MyStack ();
Scanner sc = new Scanner(System.in);
String fun;
String sin = sc.nextLine().replaceAll("\\[|\\]", "");
String[] s = sin.split(", " );
int i = 0;
if (s.length == 1 && s[0].isEmpty() ) {
LL.clear();
}
else{
while (i <= s.length - 1){
LL.add(Integer.parseInt(s[i]));
i++;
}
}
fun = sc.nextLine();
switch (fun){
case "isEmpty" :
if(LL.isEmpty())
System.out.println("True");
else
System.out.println("False");
break;
case "size" :
System.out.println(LL.size());
break;
case "push" :
int el = sc.nextInt();
System.out.print("[");
LL.push(el);
System.out.print("]");
break;
case "peek" :
System.out.print(LL.peek());
break;
case "pop" :
System.out.print(LL.pop());
}
}
}