20170917_字符串翻转

20170917_字符串翻转


//字符串翻转
//chenmeng——>gnemnehc
//abc——>cba
#include
#include
#include
#include
using namespace std;

class Solution
{
public:
	void ReverseString(string &strSource)
	{
		int strLen=strSource.size();
		if(strLen<1)
			return;
		int i=0;
		int midIndex=strLen>>1;
		while(i>strSource)
	{
		object.ReverseString(strSource);
	}
	system("pause");
	return 0;
}



你可能感兴趣的:(C++字符串专栏)