标签:
class { public: bool isAnagram(string s, string t) { if(s.size() != t.size()) return false; sort(s.begin(),s.end()); sort(t.begin(),t.end()); int n = s.size(); for(int i = 0;i<n;i++){ if(s[i]!=t[i]) return false; } return true; } };
标签:
原文地址:http://www.cnblogs.com/li-daphne/p/5608135.html