码迷,mamicode.com
首页 > 其他好文 > 详细

字符串逆序

时间:2016-06-04 16:10:12      阅读:114      评论:0      收藏:0      [点我收藏+]

标签:

题目:

Write a function that takes a string as input and returns the string reversed.
Example:
Given s = "hello", return "olleh".

思路:首尾字符交换

c++代码:

 1 class Solution {
 2 public:
 3     string reverseString(string s) {
 4         int len = s.size();
 5         for (int i = 0; i < len/2; i++) {
 6             char t = s[i];
 7             s[i] = s[len-i-1];
 8             s[len-i-1] = t;
 9         }
10         return s;
11     }
12 };

 

字符串逆序

标签:

原文地址:http://www.cnblogs.com/haileyzhang/p/5558827.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!