Leetcode-344 Reverse String
Posted 北冥有鱼,南冥有猫
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Leetcode-344 Reverse String相关的知识,希望对你有一定的参考价值。
#344. Reverse String
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) { char temp; int from=0; int to=s.size()-1; while(from<to) { temp=s[from]; s[from++]=s[to]; s[to--]=temp; } return s; } };
以上是关于Leetcode-344 Reverse String的主要内容,如果未能解决你的问题,请参考以下文章