實現(xiàn)一個leftpad庫舰罚,如果不知道什么是leftpad可以看樣例
您在真實的面試中是否遇到過這個題弄捕?
Yes
樣例
leftpad("foo", 5)
" foo"
leftpad("foobar", 6)
"foobar"
leftpad("1", 2, "0")
"01"
class StringUtils {
public:
/**
* @param originalStr the string we want to append to
* @param size the target length of the string
* @param padChar the character to pad to the left side of the string
* @return a string
*/
static string leftPad(string& originalStr, int size, char padChar=' ') {
// Write your code here
//這道題的意思是 給originalStr 填充,填充的內(nèi)容是第三個參數(shù)定硝,
//第三個參數(shù) 的默認(rèn)值是控制符
if(originalStr.length()<size){
string newstr(originalStr.rbegin(),originalStr.rend());
int diff=size-newstr.length();
for(int i=0;i<diff;i++){
newstr.push_back(padChar);
}
string retstr(newstr.rbegin(),newstr.rend());
return retstr;
}
return originalStr;
}
};