using System;
namespace TotalSort
{
/**////
/// 全排列的遞歸算法
///
class Class1
{
/**////
/// 應(yīng)用程序的主入口點(diǎn)。
///
[STAThread]
static void Main(string[] args)
{
//char[] s = "abcdefghijklmnopqrstuvwxyz".ToCharArray();
char[] s = "abcde".ToCharArray();
TotalSort(s, 0);
Console.WriteLine("\n\n總數(shù):{0}", resultCount);
Console.ReadLine();
}
static int resultCount = 0;
public static void TotalSort(char[] list, int start) {
int end = list.Length - 1;
if (start == end) {
resultCount++;
Console.WriteLine(list);
}
else {
for (int i = start; i <= end; i++) {
char[] temp = new char[list.Length];
list.CopyTo(temp, 0);
char tempc = temp[start];
temp[start] = temp[i];
temp[i] = tempc;
TotalSort(temp, start + 1);
}
}
}
}
}
北京 | 天津 | 上海 | 江蘇 | 山東 |
安徽 | 浙江 | 江西 | 福建 | 深圳 |
廣東 | 河北 | 湖南 | 廣西 | 河南 |
海南 | 湖北 | 四川 | 重慶 | 云南 |
貴州 | 西藏 | 新疆 | 陜西 | 山西 |
寧夏 | 甘肅 | 青海 | 遼寧 | 吉林 |
黑龍江 | 內(nèi)蒙古 |