From 4b11ab58bb10c090dcf3b6867bf49a54b9bf5aad Mon Sep 17 00:00:00 2001 From: CyC2018 Date: Wed, 4 Nov 2020 01:44:39 +0800 Subject: [PATCH] auto commit --- docs/notes/31. 栈的压入、弹出序列.md | 7 +++++-- notes/31. 栈的压入、弹出序列.md | 7 +++++-- 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/docs/notes/31. 栈的压入、弹出序列.md b/docs/notes/31. 栈的压入、弹出序列.md index 62f7afad..7384a5b4 100644 --- a/docs/notes/31. 栈的压入、弹出序列.md +++ b/docs/notes/31. 栈的压入、弹出序列.md @@ -1,6 +1,8 @@ # 31. 栈的压入、弹出序列 -[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) +## 题目链接 + +[牛客网](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) ## 题目描述 @@ -10,7 +12,7 @@ ## 解题思路 -使用一个栈来模拟压入弹出操作。 +使用一个栈来模拟压入弹出操作。每次入栈一个元素后,都要判断一下栈顶元素是不是当前出栈序列 popSequence 的第一个元素,如果是的话则执行出栈操作并将 popSequence 往后移一位,继续进行判断。 ```java public boolean IsPopOrder(int[] pushSequence, int[] popSequence) { @@ -33,4 +35,5 @@ public boolean IsPopOrder(int[] pushSequence, int[] popSequence) { +
diff --git a/notes/31. 栈的压入、弹出序列.md b/notes/31. 栈的压入、弹出序列.md index 62f7afad..7384a5b4 100644 --- a/notes/31. 栈的压入、弹出序列.md +++ b/notes/31. 栈的压入、弹出序列.md @@ -1,6 +1,8 @@ # 31. 栈的压入、弹出序列 -[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) +## 题目链接 + +[牛客网](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) ## 题目描述 @@ -10,7 +12,7 @@ ## 解题思路 -使用一个栈来模拟压入弹出操作。 +使用一个栈来模拟压入弹出操作。每次入栈一个元素后,都要判断一下栈顶元素是不是当前出栈序列 popSequence 的第一个元素,如果是的话则执行出栈操作并将 popSequence 往后移一位,继续进行判断。 ```java public boolean IsPopOrder(int[] pushSequence, int[] popSequence) { @@ -33,4 +35,5 @@ public boolean IsPopOrder(int[] pushSequence, int[] popSequence) { +