921:使括号有效的最少添加

This commit is contained in:
huangge1199 2021-04-27 11:29:32 +08:00
parent 5e1f5e62db
commit 3cd64325e2
3 changed files with 142 additions and 1 deletions

View File

@ -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)
}

View File

@ -0,0 +1,48 @@
<p>给定一个由&nbsp;<code>&#39;(&#39;</code>&nbsp;&nbsp;<code>&#39;)&#39;</code>&nbsp;括号组成的字符串 <code>S</code>,我们需要添加最少的括号( <code>&#39;(&#39;</code>&nbsp;或是&nbsp;<code>&#39;)&#39;</code>,可以在任何位置),以使得到的括号字符串有效。</p>
<p>从形式上讲,只有满足下面几点之一,括号字符串才是有效的:</p>
<ul>
<li>它是一个空字符串,或者</li>
<li>它可以被写成&nbsp;<code>AB</code>&nbsp;<code>A</code>&nbsp;&nbsp;<code>B</code>&nbsp;连接), 其中&nbsp;<code>A</code>&nbsp;<code>B</code>&nbsp;都是有效字符串,或者</li>
<li>它可以被写作&nbsp;<code>(A)</code>,其中&nbsp;<code>A</code>&nbsp;是有效字符串。</li>
</ul>
<p>给定一个括号字符串,返回为使结果字符串有效而必须添加的最少括号数。</p>
<p>&nbsp;</p>
<p><strong>示例 1</strong></p>
<pre><strong>输入:</strong>&quot;())&quot;
<strong>输出:</strong>1
</pre>
<p><strong>示例 2</strong></p>
<pre><strong>输入:</strong>&quot;(((&quot;
<strong>输出:</strong>3
</pre>
<p><strong>示例 3</strong></p>
<pre><strong>输入:</strong>&quot;()&quot;
<strong>输出:</strong>0
</pre>
<p><strong>示例 4</strong></p>
<pre><strong>输入:</strong>&quot;()))((&quot;
<strong>输出:</strong>4</pre>
<p>&nbsp;</p>
<p><strong>提示:</strong></p>
<ol>
<li><code>S.length &lt;= 1000</code></li>
<li><code>S</code> 只包含&nbsp;<code>&#39;(&#39;</code>&nbsp;<code>&#39;)&#39;</code>&nbsp;字符。</li>
</ol>
<p>&nbsp;</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