首頁 關於 支持
回到章節0-4

章節0-4練習題

觀念練習

請問f(4)回傳的結果為何?

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

實作練習

CSES Tower of Hanoi