20. Valid Parentheses做题报告

题目链接:

Valid Parentheses

题目大意:

判断字符串s的字符是否满足符号匹配

做题报告:

(1)该题涉及的算法与数据结构

栈,哈希表

(2)自己的解答思路+代码+分析时间和空间复杂度

思路:

栈先入后出特点,若遇到左括号入栈,遇到右括号时将对应栈顶左括号出栈,则遍历完所有括号后 stack 仍然为空则表示满足符号匹配,输出true,否则输出false

代码:

import java.util.Stack;
class Solution {
    public boolean isValid(String s) {
        Stack<Character> t = new Stack<Character>();
        for (int i = 0; i < s.length(); i++) {
            if ((s.charAt(i) == ‘[‘) || (s.charAt(i) == ‘(‘) || (s.charAt(i) == ‘{‘)) {
                t.push(s.charAt(i));
            } else if (s.charAt(i) == ‘)‘) {
                if ((t.empty() == false) && t.peek() == ‘(‘) {
                    t.pop();
                } else
                    return false;
            } else if (s.charAt(i) == ‘]‘) {
                if ((t.empty() == false) && t.peek() == ‘[‘) {
                    t.pop();
                } else
                    return false;
            } else if (s.charAt(i) == ‘}‘) {
                if ((t.empty() == false) && t.peek() == ‘{‘) {
                    t.pop();
                } else
                    return false;
            } else
                return false;
        }
        if(t.empty() == true)
            return true;
        return false;
    }
}

时间和空间复杂度:

时间复杂度:O(N)

空间复杂度:O(N)

(3)大神们的解答思路+代码+分析时间和空间复杂度

第一种:反匹配思路

对于‘([{‘字符,进行入栈,但所入栈的字符对应是’)]}‘字符,然后我们对于遍历到的非‘([{‘的字符,我们判断是否和前一个入栈的字符相同,若不同则表示字符串不匹配,否则继续向下判断。

class Solution {
    public boolean isValid(String s) {
        Stack<Character> t = new Stack<Character>();
            for(int i = 0;i<s.length();i++){
                if(s.charAt(i)==‘(‘) t.push(‘)‘);
                else if(s.charAt(i)==‘[‘) t.push(‘]‘);
                else if(s.charAt(i)==‘{‘) t.push(‘}‘);
                else if((t.empty()==true)||(s.charAt(i) != t.pop()))
                        return false;
                }
        if(t.empty() == true)
            return true;
        return false;
    }
}

第二种:利用hashmap+栈

class Solution {
    //建立一个hashmap表判断匹配
    private HashMap<Character,Character> mappins;
    public Solution(){//初始化hashmap表
        this.mappins = new HashMap<Character,Character>();
        this.mappins.put(‘)‘,‘(‘);
        this.mappins.put(‘]‘,‘[‘);
        this.mappins.put(‘}‘,‘{‘);
    }
    public boolean isValid(String s) {
        Stack<Character> stack = new Stack<Character>();
        for(int i = 0;i<s.length();i++){
            char c = s.charAt(i);
            if(this.mappins.containsKey(c)){ //判断c是否为‘)]}‘这其中的一种
                char flag = stack.empty()?‘#‘:stack.pop();//栈初始化:存‘#‘字符
                if(flag != this.mappins.get(c))
                return false;
            }
            else{//c为‘([{‘中的字符
                stack.push(c);
            }
        }
        return stack.empty();
    }
}

时间和空间复杂度:

时间复杂度:O(N)

空间复杂度:O(N)

(4)比较自己想的和参考答案的区别

         自己写的代码,琐碎,代码量相对多而言很多,使用许多判断语句。而参考答案更简化,程序效率更高。

原文地址:https://www.cnblogs.com/Aiahtwo/p/12219690.html

时间: 2024-10-08 19:25:04

20. Valid Parentheses做题报告的相关文章

Leetcode Longest Valid Parentheses 结题报告

Given a string containing just the characters '(' and ')', find the length of the longest valid (well-formed) parentheses substring. For "(()", the longest valid parentheses substring is "()", which has length = 2. Another example is &

刷题20. Valid Parentheses

一.题目说明 这个题目是20. Valid Parentheses,简单来说就是括号匹配.在学数据结构的时候,用栈可以解决.题目难度是Medium. 二.我的解答 栈涉及的内容不多,push.pop.top,. 我总共提交了3次: 第1次:Runtime Error,错误原因在于pop的时候,未判断栈是否为空. 第2次:Wrong Answer,这个是"眼大"疏忽导致的,我写的时候只考虑了()[]未考虑{}. 第3次:终于正确了,性能还可以: Runtime: 0 ms, faster

LeetCode解题笔记 - 20. Valid Parentheses

这星期听别人说在做LeetCode,让他分享一题来看看.试了感觉挺有意思,可以培养自己的思路,还能方便的查看优秀的解决方案.准备自己也开始. 解决方案通常有多种多样,我觉得把自己的解决思路记录下来,阶段性查看,一定能对自己有帮助. 这是我做的第一题,所以记录也从这题开始,之后尽力以简短的说明,描述出思路,方便以后能回顾到简介明了的记录. 20. Valid Parentheses Given a string containing just the characters '(', ')', '{

20. Valid Parentheses【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 "(]&quo

leetCode 20. Valid Parentheses 字符串

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 "(]&quo

20. Valid Parentheses括号匹配

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 "(]"

20. Valid Parentheses(js)

20. Valid Parentheses Given a string containing just the characters '(', ')', '{', '}', '[' and ']', determine if the input string is valid. An input string is valid if: Open brackets must be closed by the same type of brackets. Open brackets must be

[LeetCode]20 Valid Parentheses 有效的括号

[LeetCode]20 Valid Parentheses 有效的括号 Description Given a string containing just the characters '(', ')', '{', '}', '[' and ']', determine if the input string is valid. An input string is valid if: Open brackets must be closed by the same type of brac

1047. Remove All Adjacent Duplicates In String做题报告

题目链接: Remove All Adjacent Duplicates In String 题目大意: 删除字符串中的所有相邻字符 做题报告: (1)该题涉及的算法与数据结构 栈 (2)自己的解答思路+代码+分析时间和空间复杂度 Input: "abbaca" Output: "ca"          思路:使用栈,对字符串遍历,进行入栈出栈操作.如果栈空或者遍历到的该字符与栈顶元素不同则入栈,否则(即遍历到的该字符与栈顶元素相同)出栈.最后,栈存的字符就是我们