haizzh

博客园 首页 新随笔 联系 订阅 管理
 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 + ")");
            }
        }


    }

 

posted on 2017-01-03 14:08  haizzh  阅读(163)  评论(0编辑  收藏  举报