摘要: 排列(组合)算法的实现: /// /// 递归算法求排列 /// /// 泛型类型 /// /// /// public static void GetPermutation(T[] array, int startIndex, int endIndex) { if (startIndex == endIndex) { StringBuilder temp = new StringBuilde... 阅读全文
posted @ 2014-02-21 14:05 higirle 阅读(499) 评论(0) 推荐(0) 编辑