首页 > 学院 > 开发设计 > 正文

LeetCode 344. Reverse String

2019-11-14 08:52:06
字体:
来源:转载
供稿:网友

描述 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) { const int n = s.size(); for (size_t i = 0; i < n / 2; ++i) { swap (s[i], s[n - i - 1]); } return s; }};
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表