求整数n(n>=0)的阶乘的算法如下, int fact(int n) { if(n<=1 return 1; Return n*fact(n-1); } 其时间复杂度为O(nlogn)( ) A:对 B:错 答案: 错对于一个链串s,查找 点我阅读全文