2015年5月27日
摘要: class Solution {public: bool isIsomorphic(string s, string t) { mapxmap; if(s.size()!=t.size()){ return false; } ... 阅读全文
posted @ 2015-05-27 20:33 88123 阅读(114) 评论(0) 推荐(0)
摘要: class Solution {public: vector twoSum(vector& nums, int target) { maphash; build(nums,hash); int index2=0; vectorresult... 阅读全文
posted @ 2015-05-27 08:12 88123 阅读(118) 评论(0) 推荐(0)