摘要:
public class MergeTwoSortedArrays { public static int[] merge(int[] a, int[] b) { int lena = a.length; int lenb = b.length; int[] c = new int[lena + l 阅读全文
摘要:
http://www.cnblogs.com/gongjian/p/6121518.html 阅读全文
摘要:
经常会遇到字符串全排列的问题。例如:输入为{‘a’,’b’,’c’},则其全排列组合为abc,acb,bac,bca,cba,cab。对于输入长度为n的字符串数组,全排列组合为n!种。 package Bayes; public class RecursionTree { public static 阅读全文