Skip to content

Commit

Permalink
java中public类名必须跟文件名一致,将不一致的StackBasedOnLinkedList修改成一致;在.gitignore中配置…
Browse files Browse the repository at this point in the history
…IntelliJ idea项目配置相关文件。
  • Loading branch information
Jerry-Luo committed Apr 15, 2019
1 parent 02cfee4 commit 1d21c00
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -44,4 +44,8 @@ bld/
[Ll]og/

# Visual Studio 2015/2017 cache/options directory
.vs/
.vs/

**/*.idea
**/*.iml
**/*out
2 changes: 1 addition & 1 deletion java/08_stack/StackBasedOnLinkedList.java
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
*
* Author: Zheng
*/
public class StackBasedLinkedList {
public class StackBasedOnLinkedList {
private Node top = null;

public void push(int value) {
Expand Down

0 comments on commit 1d21c00

Please sign in to comment.