"Leetcode" 32. Longest Valid parentheses

Source: Internet
Author: User

This problem can not be used to write back, because there is an input length of 17173, will explode stack. So you have to manually simulate the stack call.

 Public classSolution {Private Static classStackFrame { Public Final CharLeft ; Private intnum;  PublicStackFrame (CharLeft ) {             This. left =Left ; } @Override PublicString toString () {return"StackFrame [left=" + Left + ", num=" + num + "]"; }    }        Private Static Finalstack<stackframe> stack =NewStack<stackframe>();  Public intlongestvalidparentheses (String s) {stack.clear (); Stack.push (NewStackFrame (' # '))); intMaxnum = 0;  for(inti = 0; I < s.length (); ++i) {Charc =S.charat (i); if(Isleft (c)) {Stack.push (NewStackFrame (c)); } Else if(Ispair (Stack.peek (). Left, C)) {StackFrame frame=Stack.pop (); Stack.peek (). Num+ = Frame.num + 2; if(Stack.peek (). num >maxnum) {Maxnum=stack.peek (). Num; }            } Else{stack.peek (). Num= 0; if(Stack.size () > 1) {                     while(Stack.size () > 1) {stack.pop (); }                }            }         }        returnMaxnum; }        Private BooleanIsleft (Charc) {returnc = = ' (' | | c = = ' [' | | c = = ' {'); }        Private BooleanIspair (CharLeftCharRight ) {        if(left = = ' (') {            returnright = = ') '; } Else if(left = = ' [') {            returnright = = '] '; } Else {            returnright = = '} '; }    }}

"Leetcode" 32. Longest Valid parentheses

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.