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