摘要: 1 class Solution { 2 public: 3 bool isPalindrome(string s) { 4 int strLen = s.size(); 5 int pos_h = 0; 6 int pos_t = 0; 7... 阅读全文
posted @ 2014-10-14 15:37 醉剑客 阅读(180) 评论(0) 推荐(0) 编辑