牛客题霸--反转字符串

反转字符串

题目链接

Solution

将字符串反转。
实现方法很多,比如reverse函数。
但是模拟下也不难,直接从后往前扫一遍即可。

Code

class Solution {
public:
    string solve(string str) {
        string ans;
        for (int i = str.size() - 1; i >= 0; --i) ans.push_back(str[i]);
        return ans;
    }
};
posted @ 2020-11-26 23:22  mjt233  阅读(59)  评论(0编辑  收藏  举报