第一步翻转句子中所有字符,第二步翻转单词
void Reverse(char* pBegin, char* pEnd) //反转字符串
{
if (pBegin == NULL || pEnd == NULL)
return;
while (pBegin < pEnd)
{
char temp = *pBegin;
*pBegin = *pEnd;
*pEnd = temp;
pBegin++;
pEnd--;
}
}
char* ReverseSentence(char* pData)
{
if (pData == NULL)
return NULL;
char* pBegin = pData;
char* pEnd = pData;
while (*pEnd!='\0')
{
pEnd++;
}
pEnd--;
Reverse(pBegin, pEnd);//反转整个句子
//反转单词
pEnd = pBegin = pData;
while (*pBegin!='\0')
{
if (*pBegin == ' ')
{
pBegin++;
pEnd++;
}
else if (*pEnd == ' ' || *pEnd == '\0')
{
Reverse(pBegin, --pEnd);
pBegin = ++pEnd;
}
else
pEnd++;
}
return pData;
}