问题 更新时间2023/6/28 20:13:00 int suml(int n){int p=1,s=0;for (int i=1; i<=n; i++) { p*=i; s+=p;}return s;} 答案 登录 注册 O(log2n) 出自:国家开放大学 >> 国家开放大学数据结构复习题