题目:反转字符串

方法1:

class Solution {
public:string reverseString(string s) {int m = (s.size() -1) / 2;for(int i = 0; i <= m; ++i){char c = s[i];s[i] = s[s.size() -1 - i];s[s.size() -1 - i] = c;}return s;        }
};

方法2:

class Solution {
public:string reverseString(string s) {reverse(s.begin(), s.end());return s;}
};

String | 344. Reverse String相关推荐

  1. LeetCode 344.Reverse String

    题意: Write a function that takes a string as input and returns the string reversed. Example: Given s ...

  2. 【跟Leon一起刷LeetCode】344. Reverse String

    Reverse String Description: Write a function that takes a string as input and returns the string rev ...

  3. LeetCode: 344. Reverse String

    051102 题目 Write a function that reverses a string. The input string is given as an array of characte ...

  4. LeetCode 344. Reverse String

    题目: Write a function that takes a string as input and returns the string reversed. Example: Given s ...

  5. Leet Code OJ 344. Reverse String [Difficulty: Easy]

    题目: Write a function that takes a string as input and returns the string reversed. Example: Given s ...

  6. 344.Reverse String

    question: Write a function that takes a string as input and returns the string reversed. Example: Gi ...

  7. 344. Reverse String

  8. LeetCode344. Reverse String

    344. Reverse String My Submissions QuestionEditorial Solution Total Accepted: 6975 Total Submissions ...

  9. stone/reverse/string/digit(完美消除)

    stone/reverse/string/digit(完美消除) stone: [问题描述] 平平去海边度假,海边有一片美丽的鹅卵石滩.平平在鹅卵石滩上捡了 $n$ 块美丽的 鹅卵石,并把它们排成一个 ...

最新文章

  1. Linux下的redis的持久化,主从同步及哨兵
  2. SpringMVC自动配置||如何修改SpringBoot的默认配置
  3. 用户接口(User exit)
  4. K-Means 基本原理
  5. java内存加载dll_jacob调用dll控件,是否要执行内存释放,具体方法怎么写
  6. w ndows7与XP哪个好,windows7和xp哪个好 windows7好用吗
  7. Nacos 快速开始
  8. 利用Telerik Fiddler 进行手机抓包!
  9. Maven: maven parent.relativepath point at wrong local pom
  10. shell 条件控制语句
  11. Linux firewall防火墙详解(一)——firewall基础知识简介
  12. Ubuntu命令大全(转载)
  13. DEA用法(1)--三阶段DEA模型与DEAP使用方法教程
  14. Android抓包工具Charles(青花瓷)
  15. Microsoft Edge浏览器打开就是360导航的问题解决方法
  16. golang 内存管理
  17. 报名 微信 投票 php,女神微信投票PHP源码带PC报名和手机报名吸粉做微信活动必备...
  18. AutoJs 4.1.1 实战教程、Hamibot
  19. Ubuntu 16.04 系列软件安装安装方法
  20. sql+plus远程连接mysql_设置sqlplus访问远程oracle数据库的方法

热门文章

  1. 10款精选的用于构建良好易用性网站的jQuery插件
  2. Java 获取linux根目录下的文件夹_Windows支持直接访问Linux子系统文件:你的下一台Linux何必是Linux...
  3. matlab期末复习资料,MATLAB期末复习习题及答案
  4. javafx android sdk,JavaFX打包到Android上
  5. linux 文件的目录,Linux文件及目录管理
  6. npm升级依赖包_Taro跨端开发之依赖管理
  7. 计算机等级考试模拟题卷子,二级VB模拟试卷 1
  8. linux处理机调度实验报告,模拟Linux操作系统下处理机调度实验报告
  9. 怎么用PHP实现年月日date,PHP date函数用法,php年月日写法
  10. mysqls压力测试怎么用_阿里研究员:测试稳定性三板斧,我怎么用?