Leetcode 678.有效的括号字符串

有效的括号字符串

给定一个只包含三种字符的字符串:( ,) 和 *,写一个函数来检验这个字符串是否为有效字符串。有效字符串具有如下规则:

  1. 任何左括号 ( 必须有相应的右括号 )。
  2. 任何右括号 ) 必须有相应的左括号 ( 。
  3. 左括号 ( 必须在对应的右括号之前 )。
  4. * 可以被视为单个右括号 ) ,或单个左括号 ( ,或一个空字符串。
  5. 一个空字符串也被视为有效字符串。

示例 1:

输入: "()"

输出: True

示例 2:

输入: "(*)"

输出: True

示例 3:

输入: "(*))"

输出: True

注意:

  1. 字符串大小将在 [1,100] 范围内。

思路

 1 class Solution {
 2     public boolean checkValidString(String s) {
 3         int n = s.length();
 4         if (n == 0) return true;
 5         boolean[][] dp = new boolean[n][n];
 6
 7         for (int i = 0; i < n; i++) {
 8             if (s.charAt(i) == ‘*‘) dp[i][i] = true;
 9             if (i < n-1 &&
10                     (s.charAt(i) == ‘(‘ || s.charAt(i) == ‘*‘) &&
11                     (s.charAt(i+1) == ‘)‘ || s.charAt(i+1) == ‘*‘)) {
12                 dp[i][i+1] = true;
13             }
14         }
15
16         for (int size = 2; size < n; size++) {
17             for (int i = 0; i + size < n; i++) {
18                 if (s.charAt(i) == ‘*‘ && dp[i+1][i+size] == true) {
19                     dp[i][i+size] = true;
20                 } else if (s.charAt(i) == ‘(‘ || s.charAt(i) == ‘*‘) {
21                     for (int k = i+1; k <= i+size; k++) {
22                         if ((s.charAt(k) == ‘)‘ || s.charAt(k) == ‘*‘) &&
23                                 (k == i+1 || dp[i+1][k-1]) &&
24                                 (k == i+size || dp[k+1][i+size])) {
25                             dp[i][i+size] = true;
26                         }
27                     }
28                 }
29             }
30         }
31         return dp[0][n-1];
32     }
33 }

原文地址:https://www.cnblogs.com/kexinxin/p/10400332.html

时间: 2024-11-02 11:05:57

Leetcode 678.有效的括号字符串的相关文章

LeetCode:有效的括号【20】

LeetCode:有效的括号[20] 题目描述 给定一个只包括 '(',')','{','}','[',']' 的字符串,判断字符串是否有效. 有效字符串需满足: 左括号必须用相同类型的右括号闭合. 左括号必须以正确的顺序闭合. 注意空字符串可被认为是有效字符串. 示例 1: 输入: "()" 输出: true 示例 2: 输入: "()[]{}" 输出: true 示例 3: 输入: "(]" 输出: false 示例 4: 输入: "

【LeetCode】- String to Integer (字符串转成整形)

[ 问题: ] Hint:Carefully consider all possible input cases. If you want a challenge, please do not see below and ask yourself what are the possible input cases. Notes:It is intended for this problem to be specified vaguely (ie, no given input specs). Y

leetcode——String to Integer (atoi) 字符串转换为整型数(AC)

mnesia在频繁操作数据的过程可能会报错:** WARNING ** Mnesia is overloaded: {dump_log, write_threshold},可以看出,mnesia应该是过载了.这个警告在mnesia dump操作会发生这个问题,表类型为disc_only_copies .disc_copies都可能会发生. 如何重现这个问题,例子的场景是多个进程同时在不断地mnesia:dirty_write/2 mnesia过载分析 1.抛出警告是在mnesia 增加dump

[LeetCode] Valid Parentheses 验证括号

Given a string containing just the characters '(', ')', '{', '}', '[' and ']', determine if the input string is valid. The brackets must close in the correct order, "()" and "()[]{}" are all valid but "(]" and "([)]"

LeetCode 678. Valid Parenthesis String 有效的括号字符串 (C++/Java)

题目: Given a string containing only three types of characters: '(', ')' and '*', write a function to check whether this string is valid. We define the validity of a string by these rules: Any left parenthesis '(' must have a corresponding right parent

[LeetCode] Generate Parentheses 生成括号

Given n pairs of parentheses, write a function to generate all combinations of well-formed parentheses. For example, given n = 3, a solution set is: "((()))", "(()())", "(())()", "()(())", "()()()" 在LeetCo

Leetcode 20.有效的括号 js

---恢复内容开始--- 题目描述: 给定一个只包括 '(',')','{','}','[',']' 的字符串,判断字符串是否有效.有效字符串需满足: 左括号必须用相同类型的右括号闭合. 左括号必须以正确的顺序闭合. 注意空字符串可被认为是有效字符串. 示例 1: 输入: "()"输出: true 示例 2: 输入: "()[]{}"输出: true 示例 3: 输入: "(]"输出: false 示例 4: 输入: "([)]&quo

LeetCode 20 Valid Parentheses 括号匹配问题

题目: Given a string containing just the characters '(', ')', '{', '}', '[' and ']', determine if the input string is valid. The brackets must close in the correct order, "()" and "()[]{}" are all valid but "(]" and "([)]&

leetcode - String to Integer (atoi) 字符串转整数

Implement atoi to convert a string to an integer. Carefully consider all possible input cases. If you want a challenge, please do not see below and ask yourself what are the possible input cases. 题目:实现字符串转整数 注意事项:考虑好各种可能的输入(坑); public class Solution