字符串逆序

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了字符串逆序相关的知识,希望对你有一定的参考价值。

题目:

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 };

 

以上是关于字符串逆序的主要内容,如果未能解决你的问题,请参考以下文章

华为机试题 HJ106字符逆序

华为机试题 HJ106字符逆序

Java面试手册-算法篇给定一个字符串,输出逆序字符串

蓝桥杯每日一练—字符逆序

文本项目系列[1]——逆序字符串

Python练习题3.8字符串逆序