開發平台(Platform): (Ex: VC++, GCC, Linux, ...)
Dev C++
額外使用到的函數庫(Library Used): (Ex: OpenGL, ...)
應該沒有吧
問題(Question):
使用者輸入數字後, 輸出所有可能之排列.
餵入的資料(Input):
假設是3好了
預期的正確結果(Expected Output):
[1] 1, 2, 3
[2] 1, 3, 2
[3] 2, 1, 3
[4] 2, 3, 1
[5] 3, 1, 2
[6] 3, 2, 1
錯誤結果(Wrong Output):
無
程式碼(Code):(請善用置底文網頁, 記得排版)
http://ideone.com/7iBiyM
補充說明(Supplement):
分為 "不使用遞迴" 和 "使用遞迴" 兩種狀況
我先不用遞迴寫