Nyoj 2 bracket matching (basic use of stack)

Source: Internet
Author: User

Nyoj 2 bracket matching (basic use of stack)
Bracket matching problem time limit: 3000 MS | memory limit: 65535 KB difficulty: 3

Description
Now, there is a sequence of parentheses. Please check whether this line of parentheses is paired.
Input
Input a number N (0 Output
The output of each group of input data occupies one row. If the brackets contained in the string are paired, Yes is output. If the string is not paired, No is output.
Sample Input
3[(])(])([[]()])
Sample output
NoNoYes
Source
Network
Uploaded
The naonao code is as follows:
#include
     
      #include
      
       char a[10010];int main(){int n;scanf("%d",&n);while(n--){int i,len,top=0;scanf("%s",a);len=strlen(a);for(i=1;i
       
        

Related Article

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.