LeetCode(344) Reverse String

Posted 逆風的薔薇

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LeetCode(344) Reverse String相关的知识,希望对你有一定的参考价值。

题目

Write a function that takes a string as input and returns the string reversed.

Example:
Given s = "hello", return "olleh".


分析


字符串逆转,左右指针。

代码

class Solution 
public:
	string reverseString(string s) 
		if (s.empty())
			return s;

		int l = 0, r = s.size() - 1;
		string ret = s;
		while (l < r)
		
			char t = ret[l];
			ret[l] = ret[r];
			ret[r] = t;

			++l;
			--r;
		
		return ret;
	
;


以上是关于LeetCode(344) Reverse String的主要内容,如果未能解决你的问题,请参考以下文章

leetcode-344. Reverse String

LeetCode_344. Reverse String

Leetcode-344 Reverse String

LeetCode之344. Reverse String

leetcode 344. Reverse String

LeetCode 344 - Reverse String