Leetcode------Plus One

Source: Internet
Author: User

Title: Valid parentheses
Pass Rate: 27.7%
Difficulty: Simple

Given A string containing just the characters,,, ‘(‘ ‘)‘ , and ‘{‘ ‘}‘ ‘[‘ ‘]‘ , determine if the input string I S valid.

The brackets must close in the correct order, and is all valid but and is not "()" "()[]{}" "(]" "([)]" .

The topic is the traditional symbol matching problem with a stack to simulate on the line. Meet (, {, [All stacks, Encounters),},] perform a stack comparison, and if not () [] {} return an error and look directly at the code:

1  Public classSolution {2      Public BooleanIsValid (String s) {3         intlen=s.length ();4stack<character> stack =NewStack<character>(); 5          for(inti=0;i<len;i++){6             Chartmp=S.charat (i);7             if(tmp== ' (' | | | tmp== ' {' | | | tmp== ' ['){8 Stack.push (TMP);9             }Ten             if(tmp== ') ' | | tmp== '} ' | | tmp== '] '){ One                 if(Stack.empty ())return false; A                 CharCtr=Stack.pop (); -                 if(tmp== ') ' &&ctr== ' (')Continue; -                  if(tmp== '] ' &&ctr== ' [')Continue; the                  if(tmp== '} ' &&ctr== ' {')Continue; -                  Else return false; -             } -         } +         if(Stack.empty ())return true; -         Else{ +             return false; A         } at     } -}

Leetcode------Plus One

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.