题目:给出一个字符串,要求将其按照单词顺序进行反转,比如如果是”the sky is blue”,那么反转之后的结果就是”blue is sky the”。
问题分析:
- 每个单词长度不一致
- 空格需要特殊处理
使用C语言实现:
1 | void swap (char chars[], int p, int q); |
控制台打印:2018-08-14 16:04:22.815076+0800 算法[6268:668783] blue is sky the
问题分析:
使用C语言实现:
1 | void swap (char chars[], int p, int q); |
控制台打印:2018-08-14 16:04:22.815076+0800 算法[6268:668783] blue is sky the