1 /************************************************************************* 2 > File Name: 41_ReverseWords.c 3 > Author: Juntaran 4 > Mail: JuntaranMail@gmail.com 5 > Created Time: 2016年09月04日 星期日 16时18分34秒 6 ************************************************************************/ 7 8 #include <stdio.h> 9 10 // 反转单词 11 void ReverseWord(char* left, char* right) 12 { 13 if (left== NULL || right==NULL) 14 return; 15 while (left < right) 16 { 17 char temp = *left; 18 *left = *right; 19 *right = temp; 20 21 left ++; 22 right --; 23 } 24 } 25 26 void Reverse(char* str) 27 { 28 if (str == NULL) 29 return; 30 31 char* left = str; 32 char* right = str; 33 while (*(right+1) != '