[Microsoft Google interview question 100-[46] How many matching arrangement methods can n pairs of brackets be available?

Source: Internet
Author: User
Question 46

How many matching arrangement methods can be used for N pairs of parentheses? For example, two pairs of parentheses can have two types: () and (())

The main idea is recursion!

# Include "stdafx. H "# include <iostream> // # include <cassert> # include <vector> using namespace STD; void print (vector <char> V) {for (vector <char>:: iterator beg = v. begin (); beg! = V. end (); ++ beg) cout <* beg <"; cout <Endl;} void matchnums (INT nsize, int nlen, vector <char> & V) {int nleftbrackets = 0; int nrightbrackets = 0; For (vector <char >:: iterator beg = v. begin (); beg! = V. end (); ++ beg) {If (* beg = '(') nleftbrackets ++; elsenrightbrackets ++; If (nrightbrackets> nleftbrackets) return; if (nleftbrackets + nrightbrackets = nsize & nleftbrackets = nrightbrackets) print (V);} If (nlen> 0) {v. push_back ('); matchnums (nsize, nLen-1, V); V. pop_back (); V. push_back ('); matchnums (nsize, nLen-1, V); V. pop_back () ;}} int main () {vector <char> V; int n = 6; matchnums (N, N, V); Return 0 ;}

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.