码迷,mamicode.com
首页 > Windows程序 > 详细

C#实现:给定任意数字,输出在该数字下所有()括号的集合

时间:2017-01-03 15:31:44      阅读:190      评论:0      收藏:0      [点我收藏+]

标签:back   main   ram   write   ++   get   rgs   class   输出   

 class Program
    {
        static void Main(string[] args)
        {
            getPairs(3, 0, 0, 1, "");
            Console.ReadKey();
        }

        private static void getPairs(int close, int left, int right, int inter, string backet)
        {
            if (left == close && right == close)
            {
                Console.Write(backet + ", ");
            }

            if (left < close)
            {
                getPairs(close, left + 1, right, inter++, backet + "(");
            }
            if (right < left)
            {
                getPairs(close, left, right + 1, inter++, backet + ")");
            }
        }


    }

 

C#实现:给定任意数字,输出在该数字下所有()括号的集合

标签:back   main   ram   write   ++   get   rgs   class   输出   

原文地址:http://www.cnblogs.com/haizzh/p/6244703.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!