p*****2 发帖数: 21240 | 1
我做了做要传两个值。
static void Find(StringBuilder sb, int n, int lcount,int rcount)
{
if (sb.Length == n)
{
Console.WriteLine(sb);
return;
}
if (lcount < n/2)
{
sb.Append('(');
Find(sb, n, lcount+1,rcount);
sb.Length--;
}
if (rcount
{
sb.Append(')');
Find(sb, n, lcount,rcount+1);
sb.Length--;
}
}
static void All(... 阅读全帖 |
|