用C++實現,將一句話裡的單詞進行倒置的方法詳解

來源:互聯網
上載者:User

用C++語言實現,將一句話中的單詞進行倒置(單詞之間倒轉,單詞本身不倒置),標點符號不導致。比如一句話“I come from tianjin. “,倒置後變成“tianjin. from come I ”。
C常見的庫函數有:
複製代碼 代碼如下:int strstr(const char* string,const char* substring) 用於返回主串中子串的位置以後的所有字元。比如主串是“123456789”,子串是“234”,則返回“23456789”。
char* strcpy(char* DestStr,const char* SrcStr) 複製字串函數
int strcmp(const char* str1,const char* str2) 比較兩個字串
char* strcat(char* destStr,const char* srcStr) 連接字串

沒有太合適題意的庫函數,因此想辦法不用庫函數,自己進行倒置。下面的是自己的實現,不足之處,還望指正!!!複製代碼 代碼如下:#include "stdafx.h"
#include <iostream>
using namespace std;
char *strReverse(char * sourcestr)
{
int j = 0, i = 0,begin,end;
char *str = sourcestr;
char temp;
j = strlen(str) - 1;
cout << " string = " << str << endl;
//先將字串進行全部倒轉 變成 .nijnaiT morf emoc I
while (j > i)
{
temp = str[i];
str[i] = str[j];
str[j] = temp;
j --;
i ++;
}
cout << " string = " << str << endl;
//然後進行按單詞部分反轉,遇到空格,則判斷出一個單詞結束
i = 0;
while (str[i])
{
if (str[i] != ' ')
{
begin = i;
while (str[i] && str[i] != ' ')
{
end = i;
i++;
}
if (str[i] == '\0') //字串的結束符
{
i--;
}
}
while (end > begin)
{
temp = str[begin];
str[begin] = str[end];
str[end] = temp;
end --;
begin ++;
}
i ++;
}
cout << " string = " << str << endl;
return str;
}
int _tmain(int argc, _TCHAR* argv[])
{
char str[] = "I come from Tianjin.";
strReverse(str);
return 0;
}

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.