zoukankan      html  css  js  c++  java
  • 1614. 括号的最大嵌套深度

    地址:https://leetcode-cn.com/problems/maximum-nesting-depth-of-the-parentheses/

    <?php
    /**
     * Created by PhpStorm.
     * User: huahua
     * Date: 2020/10/20
     * Time: 下午3:20
    1614. 括号的最大嵌套深度
    如果字符串满足一下条件之一,则可以称之为 有效括号字符串(valid parentheses string,可以简写为 VPS):
    
    字符串是一个空字符串 "",或者是一个不为 "(" 或 ")" 的单字符。
    字符串可以写为 AB(A 与 B 字符串连接),其中 A 和 B 都是 有效括号字符串 。
    字符串可以写为 (A),其中 A 是一个 有效括号字符串 。
    类似地,可以定义任何有效括号字符串 S 的 嵌套深度 depth(S):
    
    depth("") = 0
    depth(A + B) = max(depth(A), depth(B)),其中 A 和 B 都是 有效括号字符串
    depth("(" + A + ")") = 1 + depth(A),其中 A 是一个 有效括号字符串
    例如:""、"()()"、"()(()())" 都是 有效括号字符串(嵌套深度分别为 0、1、2),而 ")(" 、"(()" 都不是 有效括号字符串 。
    
    给你一个 有效括号字符串 s,返回该字符串的 s 嵌套深度 。
    
    
    
    示例 1:
    
    输入:s = "(1+(2*3)+((8)/4))+1"
    输出:3
    解释:数字 8 在嵌套的 3 层括号中。
    示例 2:
    
    输入:s = "(1)+((2))+(((3)))"
    输出:3
    示例 3:
    
    输入:s = "1+(2*3)/(2-1)"
    输出:1
    示例 4:
    
    输入:s = "1"
    输出:0
    
    
    提示:
    
    1 <= s.length <= 100
    s 由数字 0-9 和字符 '+'、'-'、'*'、'/'、'('、')' 组成
    题目数据保证括号表达式 s 是 有效的括号表达式
     */
    class Solution {
    
        /**
         * @param String $s
         * @return Integer
         */
        function maxDepth($s) {
            $max = 0;
            $count = 0;
            for ($i = 0;$i <strlen($s);$i++){
                if ($s[$i] == '('){
                    $count++;
    
                }elseif ($s[$i] == ')'){
                    $count--;
                }else{
                    continue;
                }
                $max = max($max,$count);
            }
            return $max;
        }
    }
  • 相关阅读:
    在linux上开发210的hdmi-servers输出
    haproxy.cfg
    【Quartz】Quartz的搭建、应用(单独使用Quartz)
    application.xml定时
    URLEncode转json
    Callable与Future的简单介绍
    Java并发:Callable、Future和FutureTask
    Java并发编程:Callable、Future和FutureTask
    EXECUTORSERVICE线程池讲解
    ExecutorService中submit和execute的区别
  • 原文地址:https://www.cnblogs.com/8013-cmf/p/13846669.html
Copyright © 2011-2022 走看看