一、单项选择题 1、以下函数的时间复杂度是 ( ) void func(int x,int y, int z){ if(x<=0) printf("%d, %d\n", y, z); else { func(x-1,y+1,z); func(x-1,y,z+1); } } ...