Java字串遞迴問題?

2017-10-21 12:07 am
題目如下

回答 (2)

2017-10-28 3:40 am
✔ 最佳答案
public static void stringReverseHelper(char[] array, int index){
int length = array.length-1;
if ( length/2 > index){
char c = array[index];
array[index] = array[length-index];
array[length-index] = c;
stringReverseHelper(array,index+1);
}
}
2017-10-21 2:27 pm
這題我只知道用 2個 for迴圈去寫,
遞迴就不知道了。
.
這裡有使用C語言遞迴來讓使用者輸入的字串逆向輸出。
您可以參考看看。
https://www.facebook.com/groups/1403852566495675/permalink/1988536761360583/?pnref=story


收錄日期: 2021-05-03 11:49:31
原文連結 [永久失效]:
https://hk.answers.yahoo.com/question/index?qid=20171020160714AAi7iu0

檢視 Wayback Machine 備份