int f( unsigned int n) { if ( n==0 || n==1 ) return 1; else return n*f(n-1);} A、O(1); B、O(n); C、O(n^2); D、O(n!) 发布时间:2025-06-09 16:35:22