929 Unique Email Addresses

Easy

Every email consists of a local name and a domain name, separated by the @ sign.

For example, in `alice@leetcode.com,aliceis the local name, andleetcode.com` is the domain name.

Besides lowercase letters, these emails may contain '.'s or '+'s.

If you add periods ('.') between some characters in the local name part of an email address, mail sent there will be forwarded to the same address without dots in the local name. For example, "alice.z@leetcode.com" and "alicez@leetcode.com" forward to the same email address. (Note that this rule does not apply for domain names.)

If you add a plus ('+') in the local name, everything after the first plus sign will be ignored. This allows certain emails to be filtered, for example `m.y+name@email.comwill be forwarded tomy@email.com`. (Again, this rule does not apply for domain names.)

It is possible to use both of these rules at the same time.

Given a list of emails, we send one email to each address in the list. How many different addresses actually receive mails?

Example 1:

1
2
3
Input: ["test.email+alex@leetcode.com","test.e.mail+bob.cathy@leetcode.com","testemail+david@lee.tcode.com"]
Output: 2
Explanation: "testemail@leetcode.com" and "testemail@lee.tcode.com" actually receive mails

Note:

  • 1 <= emails[i].length <= 100
  • 1 <= emails.length <= 100
  • Each emails[i] contains exactly one '@' character.

每封电子邮件都由一个本地名称和一个域名组成,以 @ 符号分隔。

例如,在 `alice@leetcode.com中,alice是本地名称,而leetcode.com` 是域名。

除了小写字母,这些电子邮件还可能包含 '.''+'

如果在电子邮件地址的本地名称部分中的某些字符之间添加句点('.'),则发往那里的邮件将会转发到本地名称中没有点的同一地址。例如,"alice.z@leetcode.com”“alicez@leetcode.com” 会转发到同一电子邮件地址。 (请注意,此规则不适用于域名。)

如果在本地名称中添加加号('+'),则会忽略第一个加号后面的所有内容。这允许过滤某些电子邮件,例如 `m.y+name@email.com将转发到my@email.com`。 (同样,此规则不适用于域名。)

可以同时使用这两个规则。

给定电子邮件列表 emails,我们会向列表中的每个地址发送一封电子邮件。实际收到邮件的不同地址有多少?

示例:

1
2
3
输入:["test.email+alex@leetcode.com","test.e.mail+bob.cathy@leetcode.com","testemail+david@lee.tcode.com"]
输出:2
解释:实际收到邮件的是 "testemail@leetcode.com" 和 "testemail@lee.tcode.com"。

提示:

  • 1 <= emails[i].length <= 100
  • 1 <= emails.length <= 100
  • 每封 emails[i] 都包含有且仅有一个 '@' 字符。

想法

一开始看题目这么长有点懵,后面整理一下思路就是遍历一遍按照状态机得到结果即可。主要是注意C++中vector的遍历以及string的遍历。

vector的遍历:

1
for (vector<string>::iterator it = v.begin(); it != v.end(); it++) {}

string的遍历:

1
for(char &c : *ch) {}

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
class Solution {
public:
int numUniqueEmails(vector<string>& emails) {
vector<string> res;
for (vector<string>::iterator it = emails.begin(); it != emails.end(); it++) {
string s = "";
bool localname = true;
bool afterplus = false;
for (char &c : *it) {
switch (c) {
case '@':
localname = false;
s += c;
break;
case '.':
if (!localname) {
s += c;
}
break;
case '+':
if (localname) {
afterplus = true;
}
else {
s += c;
}
break;
default:
if (!localname || !afterplus) {
s += c;
}
}
}
bool equal = false;
for (vector<string>::iterator it2 = res.begin(); it2 != res.end(); it2++) {
if(s == *it2) {
equal = true;
break;
}
}
if (!equal) {
res.push_back(s);
}
}
return res.size();
}
};

评论

Your browser is out-of-date!

Update your browser to view this website correctly. Update my browser now

×