首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > .NET > C# >

求一算法: C#解决方法

2012-03-06 
求一算法: C#接受输入字符串:abc输出结果:abc acb bac bca cab cba谢谢指教,C#语言实现![解决办法]下班了,

求一算法: C#
接受输入字符串:abc
输出结果:abc acb bac bca cab cba
谢谢指教,C#语言实现!

[解决办法]
下班了,回去给你写...
[解决办法]
public void permute1(String str)
{
char[] strArray = str.ToCharArray();
permute(strArray, 0, strArray.Length - 1);
}

public void permute(char[] list, int low, int high) { 
int i; 
if (low == high) { 
string cout = ""; 
for (i = 0; i <= high; i++) 
cout += list[i]; 
//System.out.println(cout); 
Response.Write(cout);
} else { 

for (i = low; i <= high; i++) { 
char temp = list[low]; 
list[low] = list[i]; 
list[i] = temp; 
permute(list, low + 1, high); 
temp = list[low]; 
list[low] = list[i]; 
list[i] = temp; 


}

热点排行