Skip to content

Commit 4b11ab5

Browse files
committed
auto commit
1 parent c29021b commit 4b11ab5

File tree

2 files changed

+10
-4
lines changed

2 files changed

+10
-4
lines changed

docs/notes/31. 栈的压入、弹出序列.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# 31. 栈的压入、弹出序列
22

3-
[NowCoder](https://www.nowcoder.com/practice/d77d11405cc7470d82554cb392585106?tpId=13&tqId=11174&tPage=1&rp=1&ru=/ta/coding-interviews&qru=/ta/coding-interviews/question-ranking&from=cyc_github)
3+
## 题目链接
4+
5+
[牛客网](https://www.nowcoder.com/practice/d77d11405cc7470d82554cb392585106?tpId=13&tqId=11174&tPage=1&rp=1&ru=/ta/coding-interviews&qru=/ta/coding-interviews/question-ranking&from=cyc_github)
46

57
## 题目描述
68

@@ -10,7 +12,7 @@
1012

1113
## 解题思路
1214

13-
使用一个栈来模拟压入弹出操作。
15+
使用一个栈来模拟压入弹出操作。每次入栈一个元素后,都要判断一下栈顶元素是不是当前出栈序列 popSequence 的第一个元素,如果是的话则执行出栈操作并将 popSequence 往后移一位,继续进行判断。
1416

1517
```java
1618
public boolean IsPopOrder(int[] pushSequence, int[] popSequence) {
@@ -33,4 +35,5 @@ public boolean IsPopOrder(int[] pushSequence, int[] popSequence) {
3335

3436

3537

38+
3639
<div align="center"><img width="320px" src="https://cs-notes-1256109796.cos.ap-guangzhou.myqcloud.com/githubio/公众号二维码-2.png"></img></div>

notes/31. 栈的压入、弹出序列.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# 31. 栈的压入、弹出序列
22

3-
[NowCoder](https://www.nowcoder.com/practice/d77d11405cc7470d82554cb392585106?tpId=13&tqId=11174&tPage=1&rp=1&ru=/ta/coding-interviews&qru=/ta/coding-interviews/question-ranking&from=cyc_github)
3+
## 题目链接
4+
5+
[牛客网](https://www.nowcoder.com/practice/d77d11405cc7470d82554cb392585106?tpId=13&tqId=11174&tPage=1&rp=1&ru=/ta/coding-interviews&qru=/ta/coding-interviews/question-ranking&from=cyc_github)
46

57
## 题目描述
68

@@ -10,7 +12,7 @@
1012

1113
## 解题思路
1214

13-
使用一个栈来模拟压入弹出操作。
15+
使用一个栈来模拟压入弹出操作。每次入栈一个元素后,都要判断一下栈顶元素是不是当前出栈序列 popSequence 的第一个元素,如果是的话则执行出栈操作并将 popSequence 往后移一位,继续进行判断。
1416

1517
```java
1618
public boolean IsPopOrder(int[] pushSequence, int[] popSequence) {
@@ -33,4 +35,5 @@ public boolean IsPopOrder(int[] pushSequence, int[] popSequence) {
3335

3436

3537

38+
3639
<div align="center"><img width="320px" src="https://cs-notes-1256109796.cos.ap-guangzhou.myqcloud.com/githubio/公众号二维码-2.png"></img></div>

0 commit comments

Comments
 (0)