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

【一天一道LeetCode】#344. Reverse String

时间:2016-07-10 18:47:54      阅读:135      评论:0      收藏:0      [点我收藏+]

标签:

一天一道LeetCode

本系列文章已全部上传至我的github,地址:ZeeCoder‘s Github
欢迎大家关注我的新浪微博,我的新浪微博
欢迎转载,转载请注明出处

(一)题目

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

Example:
Given s = “hello”, return “olleh”.

(二)解题

题目大意:给定一个链表,将其反转输出。
解题思路:从尾到头,依次叠加到新string。

class Solution {
public:
    string reverseString(string s) {
        int len = s.length();
        string ret;
        for(int i = len-1; i>=0;i--){
            ret+=s[i];
        }
        return ret;
    }
};

【一天一道LeetCode】#344. Reverse String

标签:

原文地址:http://blog.csdn.net/terence1212/article/details/51868698

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