921:使括号有效的最少添加
This commit is contained in:
parent
5e1f5e62db
commit
3cd64325e2
@ -0,0 +1,93 @@
|
||||
//给定一个由 '(' 和 ')' 括号组成的字符串 S,我们需要添加最少的括号( '(' 或是 ')',可以在任何位置),以使得到的括号字符串有效。
|
||||
//
|
||||
// 从形式上讲,只有满足下面几点之一,括号字符串才是有效的:
|
||||
//
|
||||
//
|
||||
// 它是一个空字符串,或者
|
||||
// 它可以被写成 AB (A 与 B 连接), 其中 A 和 B 都是有效字符串,或者
|
||||
// 它可以被写作 (A),其中 A 是有效字符串。
|
||||
//
|
||||
//
|
||||
// 给定一个括号字符串,返回为使结果字符串有效而必须添加的最少括号数。
|
||||
//
|
||||
//
|
||||
//
|
||||
// 示例 1:
|
||||
//
|
||||
// 输入:"())"
|
||||
//输出:1
|
||||
//
|
||||
//
|
||||
// 示例 2:
|
||||
//
|
||||
// 输入:"((("
|
||||
//输出:3
|
||||
//
|
||||
//
|
||||
// 示例 3:
|
||||
//
|
||||
// 输入:"()"
|
||||
//输出:0
|
||||
//
|
||||
//
|
||||
// 示例 4:
|
||||
//
|
||||
// 输入:"()))(("
|
||||
//输出:4
|
||||
//
|
||||
//
|
||||
//
|
||||
// 提示:
|
||||
//
|
||||
//
|
||||
// S.length <= 1000
|
||||
// S 只包含 '(' 和 ')' 字符。
|
||||
//
|
||||
//
|
||||
//
|
||||
// Related Topics 栈 贪心算法
|
||||
// 👍 84 👎 0
|
||||
|
||||
package leetcode.editor.cn;
|
||||
|
||||
import java.util.Queue;
|
||||
import java.util.Stack;
|
||||
|
||||
//921:使括号有效的最少添加
|
||||
public class MinimumAddToMakeParenthesesValid {
|
||||
public static void main(String[] args) {
|
||||
//测试代码
|
||||
Solution solution = new MinimumAddToMakeParenthesesValid().new Solution();
|
||||
}
|
||||
|
||||
//力扣代码
|
||||
//leetcode submit region begin(Prohibit modification and deletion)
|
||||
class Solution {
|
||||
public int minAddToMakeValid(String S) {
|
||||
int length = S.length();
|
||||
if (length == 0) {
|
||||
return 0;
|
||||
}
|
||||
int num = 0;
|
||||
Stack<Character> stack = new Stack<>();
|
||||
for (char ch : S.toCharArray()) {
|
||||
if (ch == ')') {
|
||||
if (stack.isEmpty()) {
|
||||
num++;
|
||||
} else {
|
||||
stack.pop();
|
||||
}
|
||||
} else {
|
||||
stack.push(ch);
|
||||
}
|
||||
}
|
||||
while (!stack.isEmpty()){
|
||||
num++;
|
||||
stack.pop();
|
||||
}
|
||||
return num;
|
||||
}
|
||||
}
|
||||
//leetcode submit region end(Prohibit modification and deletion)
|
||||
|
||||
}
|
@ -0,0 +1,48 @@
|
||||
<p>给定一个由 <code>'('</code> 和 <code>')'</code> 括号组成的字符串 <code>S</code>,我们需要添加最少的括号( <code>'('</code> 或是 <code>')'</code>,可以在任何位置),以使得到的括号字符串有效。</p>
|
||||
|
||||
<p>从形式上讲,只有满足下面几点之一,括号字符串才是有效的:</p>
|
||||
|
||||
<ul>
|
||||
<li>它是一个空字符串,或者</li>
|
||||
<li>它可以被写成 <code>AB</code> (<code>A</code> 与 <code>B</code> 连接), 其中 <code>A</code> 和 <code>B</code> 都是有效字符串,或者</li>
|
||||
<li>它可以被写作 <code>(A)</code>,其中 <code>A</code> 是有效字符串。</li>
|
||||
</ul>
|
||||
|
||||
<p>给定一个括号字符串,返回为使结果字符串有效而必须添加的最少括号数。</p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p><strong>示例 1:</strong></p>
|
||||
|
||||
<pre><strong>输入:</strong>"())"
|
||||
<strong>输出:</strong>1
|
||||
</pre>
|
||||
|
||||
<p><strong>示例 2:</strong></p>
|
||||
|
||||
<pre><strong>输入:</strong>"((("
|
||||
<strong>输出:</strong>3
|
||||
</pre>
|
||||
|
||||
<p><strong>示例 3:</strong></p>
|
||||
|
||||
<pre><strong>输入:</strong>"()"
|
||||
<strong>输出:</strong>0
|
||||
</pre>
|
||||
|
||||
<p><strong>示例 4:</strong></p>
|
||||
|
||||
<pre><strong>输入:</strong>"()))(("
|
||||
<strong>输出:</strong>4</pre>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p><strong>提示:</strong></p>
|
||||
|
||||
<ol>
|
||||
<li><code>S.length <= 1000</code></li>
|
||||
<li><code>S</code> 只包含 <code>'('</code> 和 <code>')'</code> 字符。</li>
|
||||
</ol>
|
||||
|
||||
<p> </p>
|
||||
<div><div>Related Topics</div><div><li>栈</li><li>贪心算法</li></div></div>\n<div><li>👍 84</li><li>👎 0</li></div>
|
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue
Block a user