码迷,mamicode.com
首页 > 其他好文 > 详细

leetcode 49. Anagrams

时间:2015-03-17 23:19:33      阅读:129      评论:0      收藏:0      [点我收藏+]

标签:

Given an array of strings, return all groups of strings that are anagrams.

Note: All inputs will be in lower-case.

[Solution]

FOR ANY string st IN strs,

1) sort st

2) hash st, since st is sorted, all anagrams will be hash to one value.

 1 vector<string> anagrams(vector<string> &strs) 
 2     {
 3         unordered_map<string, int>table;
 4         vector<string> result;
 5         
 6         for (int i = 0; i < strs.size(); i++)
 7         {
 8             string st = strs[i];
 9             sort(st.begin(), st.end());
10             
11             if (table.find(st) == table.end())
12             {
13                 table[st] = i;
14             }
15             else
16             {
17                 if (table[st] >= 0)
18                 {
19                     result.push_back(strs[table[st]]);
20                     table[st] = -1;
21                 }
22                 result.push_back(strs[i]);
23             }
24         }
25         
26         return result;
27     }

 

leetcode 49. Anagrams

标签:

原文地址:http://www.cnblogs.com/ym65536/p/4345714.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!