2013年5月3日
摘要: 1 class Solution { 2 public: 3 bool isPalindrome(string s) { 4 // Start typing your C/C++ solution below 5 // DO NOT write int main() function 6 if(s.size()==0) 7 return true; 8 vector<char> v1; 9 int i;10 for(i=0;i<s.size();i++)11 ... 阅读全文
posted @ 2013-05-03 20:39 宇睿 阅读(138) 评论(0) 推荐(0) 编辑