[leetcode-921-Minimum Add to Make Parentheses Valid]

Posted hellowOOOrld

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[leetcode-921-Minimum Add to Make Parentheses Valid]相关的知识,希望对你有一定的参考价值。

Given a string S of ‘(‘ and ‘)‘ parentheses, we add the minimum number of parentheses ( ‘(‘ or ‘)‘, and in any positions ) so that the resulting parentheses string is valid.

Formally, a parentheses string is valid if and only if:

  • It is the empty string, or
  • It can be written as AB (A concatenated with B), where A and B are valid strings, or
  • It can be written as (A), where A is a valid string.

Given a parentheses string, return the minimum number of parentheses we must add to make the resulting string valid.

 

Example 1:

Input: "())"
Output: 1

Example 2:

Input: "((("
Output: 3

Example 3:

Input: "()"
Output: 0

Example 4:

Input: "()))(("
Output: 4

 

Note:

  1. S.length <= 1000
  2. S only consists of ‘(‘ and ‘)‘ characters. 

思路:

用一个栈即可,如果顶部和字符串中的当前字符匹配则出栈,最后栈的大小即为不匹配的个数。

int minAddToMakeValid(string S) {
        if(S.length()<=1)return S.length();
        stack<char>st;
        for(int i = 0; i < S.length(); i++)
        {
            if(S[i] == ) && !st.empty() && st.top() == ()
            {
                st.pop();
                continue;
            }
            else
            {
                st.push(S[i]);
            }
        }
        return st.size();
    }

 

以上是关于[leetcode-921-Minimum Add to Make Parentheses Valid]的主要内容,如果未能解决你的问题,请参考以下文章

add与add to的用法区别?

add(1,2) add add add(1,2,3)

add up to和add to,add…up ,add…to区别

类型错误:listingsRef.add 不是函数。 (在 'listingsRef.add(updatedUploadObjects)' 中,'listingsRef.add' 未定义)

git add -A git add -u git add . 三种区别

add和add to的区别?