經典問題之漢諾塔(遞歸)

二話不說,直接上代碼,註釋全有ios #include<cstdio> #include<iostream> #include<algorithm> using namespace std; void hannuota(int n,char str,char mid,char dest) {//將str上的n個盤子,以mid爲中轉,移動到dest上 if(n == 1) {//只需移動一個
相關文章
相關標籤/搜索