We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 02cfee4 commit 1d21c00Copy full SHA for 1d21c00
.gitignore
@@ -44,4 +44,8 @@ bld/
44
[Ll]og/
45
46
# Visual Studio 2015/2017 cache/options directory
47
-.vs/
+.vs/
48
+
49
+**/*.idea
50
+**/*.iml
51
+**/*out
java/08_stack/StackBasedOnLinkedList.java
@@ -5,7 +5,7 @@
5
*
6
* Author: Zheng
7
*/
8
-public class StackBasedLinkedList {
+public class StackBasedOnLinkedList {
9
private Node top = null;
10
11
public void push(int value) {
0 commit comments