判断括号序列是否合法

括号序列,由( { [组成 例如(([{}]))()这样的序列是合法的,{)序列是不合法的。写个函数判断该序列是否合法,函数名称为bool isValidSeq(string input);

以下是简单实现,希望有人提供更快更优的方法,

bool isValidSeq(string input)
{
     char Left[10]={0};
     int index=0;


    for (int i=0;i<input.length();++i)
   {
          if ( (input[i]=='(')
              ||(input[i]=='[')
              ||(input[i]=='{'))
         {
               Left[index++] = input[i];
   
         }
         else
        {
               if ((input[i] =='}')&&(Left[index-1]=='{'))
              {
                   Left[--index]='\0';
                   continue;
              }
           
             if ((input[i] ==']')&&(Left[index-1]=='['))
             {
                   Left[--index]='\0';
                   continue;
             }

             if ((input[i] ==')')&&(Left[index-1]=='('))
            {
                 Left[--index]='\0';
                  continue;
             }
   
       }

    }

    if (index == 0)
    {
          return true;
    }
  
 return false;

}

 

好的,这是一个经典的括号匹配问题。我为您提供一个简单的算法,可以解决这两个问题。 算法思路: (1) 对于判断括号序列是否合法,我们可以使用栈来进行匹配。遍历输入的字符串,如果当前字符是左括号,则将其入栈;如果当前字符是右括号,则取出栈顶元素进行匹配。如果匹配成功,则继续遍历;否则,返回不合法。 (2) 对于求解最少需要添加的括号数目,我们可以在进行括号匹配的同时统计需要添加的左括号和右括号的个数。具体地,如果当前字符是左括号,则将其入栈;如果当前字符是右括号,则取出栈顶元素进行匹配。如果匹配成功,则继续遍历;否则,需要添加的左括号或右括号的个数加1。遍历完整个字符串后,最少需要添加的括号数目即为需要添加的左括号和右括号的个数之和。 以下是基于上述算法的 C++ 代码实现: ```c++ #include <iostream> #include <stack> #include <string> using namespace std; bool isValid(string s) { stack<char> st; for (char c : s) { if (c == '(' || c == '{' || c == '[') { st.push(c); } else { if (st.empty()) { return false; } char top = st.top(); st.pop(); if (c == ')' && top != '(') { return false; } if (c == '}' && top != '{') { return false; } if (c == ']' && top != '[') { return false; } } } return st.empty(); } int minAdd(string s) { stack<char> st; int left = 0, right = 0; for (char c : s) { if (c == '(' || c == '{' || c == '[') { st.push(c); left++; } else { if (st.empty()) { right++; } else { char top = st.top(); st.pop(); if (c == ')' && top != '(') { right++; } else if (c == '}' && top != '{') { right++; } else if (c == ']' && top != '[') { right++; } } } } return left + right; } int main() { string s = "(}(}"; if (isValid(s)) { cout << "The string is valid." << endl; } else { cout << "The string is invalid." << endl; int num = minAdd(s); cout << "At least " << num << " brackets need to be added." << endl; } return 0; } ``` 希望能够帮到您!
评论 3
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值