摘要: 全排序 1 static void AllSort(int[] arr, string rtnStr) 2 { 3 if (arr.Length == 0) 4 { 5 Console.WriteLine(rtnStr); 6 return; 7 } 8 9 int i = -1;10 string temp = rtnStr;11 12 while ((++i) < ... 阅读全文
posted @ 2013-05-30 10:43 小09牛 阅读(215) 评论(0) 推荐(0) 编辑