算法试题-下面算法时间复杂度是

int foo(int n)
{
	if (n <= 1)
		return 1;
	return n*foo(n - 1);
}

网友评论0