标签:== 必须 nbsp esc bst 要求 基本应用 ret describe
class Solution { public: string LeftRotateString(string str, int n) { if(str.size()==0) return str;//必须加上这句话否则编译错误 string t1=str.substr(0,n); string t2=str.substr(n); str=""; str+=t2; str+=t1; return str; } };
标签:== 必须 nbsp esc bst 要求 基本应用 ret describe
原文地址:https://www.cnblogs.com/cstdio1/p/11240171.html