博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Leetcode题目:Reverse String
阅读量:6414 次
发布时间:2019-06-23

本文共 388 字,大约阅读时间需要 1 分钟。

题目:

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) {
        stringstream res;
        res.clear();
        for(int i = s.length() - 1;i >= 0;i--)
        {
            res << s[i];
        }
        return res.str();
    }
};

转载于:https://www.cnblogs.com/CodingGirl121/p/5421933.html

你可能感兴趣的文章
Spring MVC 4.x + fastjson 1.2.7,封装的List<?>参数
查看>>
js选中问题
查看>>
CentOS 7 Shell脚本编程第二讲 Shell 脚本创建和执行
查看>>
protobuf
查看>>
4.Java基础复习--Set
查看>>
七:Mysql的乐观锁与悲观锁机制
查看>>
CSS滤镜及渐变 (filter样式表属性)
查看>>
调用上面的@InitBinder 解决客户端上传时间参数转换的问题
查看>>
net.sf.json.JSONException: There is a cycle in the hierarchy异常,解决方法
查看>>
OpenStack centos版安装(二)
查看>>
Android自动化测试方向
查看>>
QT中常用数据之间转换
查看>>
向量的内积,长度,正交性
查看>>
app包中的fragment和v4包中的fragment的使用的区别
查看>>
Http协议与缓存
查看>>
监测超过特定内存阀值进程并结束
查看>>
Linux Centos 查询信息
查看>>
android adb命令
查看>>
python “双”稀疏矩阵转换为最小联通量“单”矩阵
查看>>
揭秘天猫双11背后:20万商家600万张海报,背后只有一个鹿班
查看>>