标签: algorithm
答案 0 :(得分:0)
迭代方法的运行时间是O(n),其中n是序列中有多少元素。
递归方法的运行时间是O(2 ^ n)。
String match =""; for(File f: files){ if(!match.isEmpty()) match+=","; match+=f.toString(); } return match;
你可以看到这是如何打破一个具有指数元素的树。