左旋转字符串(中等,字符串)

题目描述
汇编语言中有一种移位指令叫做循环左移(ROL),现在有个简单的任务,就是用字符串模拟这个指令的运算结果。对于一个给定的字符序列S,请你把其循环左移K位后的序列输出。例如,字符序列S=”abcXYZdef”,要求输出循环左移3位后的结果,即“XYZdefabc”。是不是很简单?OK,搞定它!
示例1
输入
“abcXYZdef”,3
返回值
“XYZdefabc”

class Solution {
    
    
public:
    string LeftRotateString(string str, int n) {
    
    
        if(n==0||str.length()==0) return str;
        int len=str.length();
        n%=len;
        string ans=str.substr(n,len-n)+str.substr(0,n);
        return ans;
    }
};

猜你喜欢

转载自blog.csdn.net/weixin_43540515/article/details/114457096