摘要: 1 class Solution { 2 public: 3 bool isIsomorphic(string s, string t) { 4 map mp; 5 int sl=s.size(),st=t.size(); 6 if(sl!=... 阅读全文
posted @ 2015-06-08 10:16 varcom 阅读(119) 评论(0) 推荐(0) 编辑