921. Minimum Add to Make Parentheses Valid

2022/1/28 6:04:16

本文主要是介绍921. Minimum Add to Make Parentheses Valid,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

这道题是典型的括号题,一般来说,括号题用stack做,但是这道题因为太简单了,连stack都不用, 就用int就好了,时间复杂度O(n)。

    public int minAddToMakeValid(String s) {
        int count = 0;
        int res = 0;
        for(int i=0;i<s.length();i++){
            char c = s.charAt(i);
            if(c=='('){
                count++;
            }else if(c==')'){
                if(count>0)
                    count--;  //count means left parenthesis needed.
                else
                    res++;  //res means right parenthesis needed.
            }
        }
        return res + count;
    }

 



这篇关于921. Minimum Add to Make Parentheses Valid的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程