翻转单词顺序
Posted bananaa
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了翻转单词顺序相关的知识,希望对你有一定的参考价值。
#include<stdio.h> #include<string.h> #include <pthread.h> #include <iostream> #include <algorithm> #include <vector> #include <stack> #include <stdlib.h> #include <sstream> using namespace std; class Solution { public: string LeftRotateString(string str, int n) { int length=str.length(); cout<<length<<endl; if(n>length) return str; else { string front=str.substr(0,n); string back=str.substr(n); back.append(front); return back; } } }; int main() { Solution s; string str="XYZabdfg"; cout<<s.LeftRotateString(str,10)<<endl; system("pause"); return 0; }
以上是关于翻转单词顺序的主要内容,如果未能解决你的问题,请参考以下文章
2022&2023华为OD机试 - 单词反转 2(Python)
《剑指Offer——57.和为s的两个数字,58.翻转单词顺序》代码