C++中的strrev函数

C++中的strrev函数

    

    C++中有函数strrev,功能是对字符串实现反转,但是要记住,strrev函数只对字符数组有效,对string类型是无效的。


    具体见下面代码,其中我还自己实现了一下:


#include<iostream>
#include<string>
using namespace std; 

int main()
{
	char s[100] = "china"; 

	cout<<s<<endl; 
	strrev(s); 
	cout<<s<<endl; 

	/* strrev不能对string类型使用 
	string str="china"; 
	cout<<str<<endl; 
	strrev(str.c_str());
	cout<<str<<endl; 
	*/

	char str[100]="china"; 
	cout<<str<<endl; 
	int head=0, tail=strlen(str)-1; 
	for(; head<tail; head++, tail--)
	{
		swap(str[head], str[tail]); 
	}
	cout<<str<<endl; 

	return 0; 
}


C++中的strrev函数_第1张图片



你可能感兴趣的:(C++,字符串,字符串反转,字符数组,strrev)