r*****t 发帖数: 286 | 1 ☆─────────────────────────────────────☆
oolong (乌龙茶) 于 (Mon Mar 26 11:05:53 2007) 提到:
也许很经典,但是第一次见。。。
设计一个小的纯c程序,不用string,不用malloc,实现:
输入:从键盘输入字符串,数目未知,也许很长很长
输出:在屏幕上输出逆序的该字符串
☆─────────────────────────────────────☆
lIl1 (Land Mass) 于 (Mon Mar 26 11:43:35 2007) 提到:
recursion, with int array
☆─────────────────────────────────────☆
ThisTiger (aTiger) 于 (Mon Mar 26 13:14:50 2007) 提到:
with recursion, you don't need an array. However, the stack will be filled
up if the string is very v |
|