首页
Python
Java
IOS
Andorid
NodeJS
JavaScript
HTML5
【
ctci1.3
】的更多相关文章
ctci1.8
bool isSub(string str0, string str1){ if(str0.length() != str1.length()) return false; str0 = str0.append(str0); if(str0.find(str1) == string::npos) return false; else return true; }…
ctci1.4
; ; ; i < len ; i++) ; +]; ; i < len; i++){ '; } } newhead[j] = '\0'; str = newhead; return str; }…
ctci1.3
; i < len; i++){ if(str0[i] != str1[i]) return false; } return true; }…
ctci1.2
; ; i < len/; i++){ tmp = *(str+i); *(str+i) = *(str+len--i); *(str+len--i) = tmp; } return; }…
ctci1.1
) ; ; i < len; i++){ if(place.find(str[i]) == place.end()) place.insert(pair<char,bool>(str[i],true)); else return false; } return true; }…