遞迴(Recursive) 是程式中包含自我呼叫(self-calling)。 ... c; for(i = 1; i < n; i++){ c = a + b; a = b; b = c; } return c; } } //Time: O(n) ...
確定! 回上一頁