#include
#include
#include
int main(void)
{
char str[81];
char *p, temp;
int i,n,length;
gets(str);
for (p = str,i=0,n = strlen(str); i<n/2; i++)//將整個字符串倒序
{
temp = *(p+n-1-i);
*(p+n-1-i) = *(p+i);
*(p+i) = temp;
}
puts(str);
p = str;
length=0;
do //將字符串中的每個單詞倒序
{
if( isalpha(*p) )
{
length++;
}
else
{
if(length>1)
for(i=0; i<length/2; i++)
{
temp = *(p-1-i);
*(p-1-i) = *(p-length+i);
*(p-length+i) = temp;
}
length = 0;
}
}
while(*p++ != '\0');
puts(str);
return 0;
}
這個do while循環怎麼理解?
do //將字符串中的每個單詞倒序
{
if( isalpha(*p) ) //*P指向str,也就是同一塊地址,這裡判斷*p所指的字符是否為字母,如果是,則length計數
{
length++;
}
else
{
if(length>1)
for(i=0; i<length/2; i++)//這個for循壞做交換功能,例如:ABC123DEF,變成DEF123ABC,可以自己舉一串字符看看
{
temp = *(p-1-i);
*(p-1-i) = *(p-length+i);
*(p-length+i) = temp;
}
length = 0;
}
}
while(*p++ != '\0');