Skip to content

Commit 151cdb1

Browse files
committed
[stack] Feat: 스택 구현
1 parent ffd22a6 commit 151cdb1

10 files changed

+234
-0
lines changed

ever/.idea/.gitignore

+126
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ever/.idea/description.html

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ever/.idea/encodings.xml

+6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ever/.idea/misc.xml

+9
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ever/.idea/modules.xml

+8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ever/.idea/project-template.xml

+3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ever/.idea/vcs.xml

+6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ever/ever.iml

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<module type="JAVA_MODULE" version="4">
3+
<component name="NewModuleRootManager" inherit-compiler-output="true">
4+
<exclude-output />
5+
<content url="file://$MODULE_DIR$">
6+
<sourceFolder url="file://$MODULE_DIR$/src" isTestSource="false" />
7+
</content>
8+
<orderEntry type="inheritedJdk" />
9+
<orderEntry type="sourceFolder" forTests="false" />
10+
</component>
11+
</module>
12+

ever/src/com/codesquad/Main.java

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
package com.codesquad;
2+
3+
public class Main {
4+
5+
public static void main(String[] args) {
6+
Stack<Integer> s = new Stack<Integer>();
7+
s.push(1);
8+
s.push(2);
9+
s.push(3);
10+
s.push(4);
11+
System.out.println(s.pop());
12+
System.out.println(s.pop());
13+
System.out.println(s.peek());
14+
System.out.println(s.pop());
15+
System.out.println(s.isEmpty());
16+
System.out.println(s.pop());
17+
System.out.println(s.isEmpty());
18+
}
19+
}

ever/src/com/codesquad/Stack.java

+44
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
package com.codesquad;
2+
3+
import java.util.EmptyStackException;
4+
5+
public class Stack<T> {
6+
7+
private Node<T> top;
8+
9+
public class Node<T> {
10+
public T data;
11+
public Node<T> next;
12+
13+
public Node(T data, Node<T> next) {
14+
this.data = data;
15+
this.next = next;
16+
}
17+
}
18+
19+
public T pop() {
20+
if (this.top == null) {
21+
throw new EmptyStackException();
22+
}
23+
24+
T data = this.top.data;
25+
this.top = this.top.next;
26+
return data;
27+
}
28+
29+
public T peek() {
30+
if (top == null) {
31+
throw new EmptyStackException();
32+
}
33+
34+
return this.top.data;
35+
}
36+
37+
public void push(T data) {
38+
this.top = new Node<>(data, top);
39+
}
40+
41+
public boolean isEmpty() {
42+
return this.top == null;
43+
}
44+
}

0 commit comments

Comments
 (0)