在python中強制結束遞歸函數的方法以下兩種
1.使用return語句結束
def count(dict, key, depth):
if key is not None:
if key == 42:
return depth
return count(map, map[key][0], depth+1)
return count(map, map[key][1], depth+1)
2.通過在遞歸函數外定義一個isGo全局變量結束
var isGo:Boolean=true
functionarr_all(pre:Array,nex:Array) {
if(isGo==false){return}
var j:uint=nex.length;
if (j==1) {
var t=[];
for (var i:uint=0;i
t.push(pre[i]); }
t.push(nex[0]);
isGo =false;
returninfo.appendText("\n"+pc(t));
}
for (var k:uint=0; k
var p:Array=pre.slice(); var s:Array=nex.slice();
p.push(s.splice(k,1));
arr_all(p,s);
}
}