首页 > 代码库 > 字符串中各单词的翻转

字符串中各单词的翻转

#include<iostream>
using namespace std;

void RevStr(char *src)
{
    char *start=src,*end=src,*ptr=src;
    
    while(*ptr++!=\0)
    {
        if(*ptr== ||*ptr==\0)
        {
            end=ptr-1;
            while(start<end)
                swap(*start++,*end--);
                
            start=end=ptr+1;
        }
    }
    start=src,end=ptr-2;
    while(start<end)
    {
        swap(*start++,*end--);
    }
}


int main()
{
    char src[]="there is a dog !";
    cout <<src<<endl;
    RevStr(src);
    cout <<src<<endl;
    
    return 0;
}

 

字符串中各单词的翻转