遞歸過程和遞歸計算過程

遞歸過程:表示這個過程的定義引用了該過程自己。以下面的代碼塊1 (define (factorial n) (fact-iter 1 1 n)) (define (fact-iter product count max-count) (if(> count max-count) product (fact-iter (* product count)//
相關文章
相關標籤/搜索