2010年7月27日
摘要: #region /// <summary> /// 全排列 递归 考虑重复 /// Peter /// </summary> public static String[] Permutation(String s) { if (s.Length == 1) { String[] res = new String[1]; res[0] = s; return res; ... 阅读全文
posted @ 2010-07-27 14:34 PeterZhang 阅读(1706) 评论(2) 推荐(0)