题目描述
每个 有效电子邮件地址 都由一个 本地名 和一个 域名 组成,以 '@'
符号分隔。除小写字母之外,电子邮件地址还可以含有一个或多个 '.'
或 '+'
。
- 例如,在
alice@leetcode.com
中, alice
是 本地名 ,而 leetcode.com
是 域名 。
如果在电子邮件地址的 本地名 部分中的某些字符之间添加句点('.'
),则发往那里的邮件将会转发到本地名中没有点的同一地址。请注意,此规则 不适用于域名 。
- 例如,
"alice.z@leetcode.com”
和 “alicez@leetcode.com”
会转发到同一电子邮件地址。
如果在 本地名 中添加加号('+'
),则会忽略第一个加号后面的所有内容。这允许过滤某些电子邮件。同样,此规则 不适用于域名 。
- 例如
m.y+name@email.com
将转发到 my@email.com
。
可以同时使用这两个规则。
给你一个字符串数组 emails
,我们会向每个 emails[i]
发送一封电子邮件。返回实际收到邮件的不同地址数目。
示例 1:
输入:emails = ["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"。
示例 2:
输入:emails = ["a@leetcode.com","b@leetcode.com","c@leetcode.com"]
输出:3
提示:
1 <= emails.length <= 100
1 <= emails[i].length <= 100
emails[i]
由小写英文字母、'+'
、'.'
和 '@'
组成
- 每个
emails[i]
都包含有且仅有一个 '@'
字符
- 所有本地名和域名都不为空
- 本地名不会以
'+'
字符作为开头
- 域名以
".com"
后缀结尾。
- 域名在
".com"
后缀前至少包含一个字符
解法
方法一:哈希表
我们可以用一个哈希表 $s$ 来存储所有的电子邮件地址,然后遍历数组 $\textit{emails}$,对于每个电子邮件地址,我们将其分为本地名和域名两部分,然后对本地名进行处理,去掉所有的点号和加号后面的字符,最后将处理后的本地名和域名拼接起来,加入哈希表 $s$ 中。
最后返回哈希表 $s$ 的大小即可。
时间复杂度 $O(L)$,空间复杂度 $O(L)$,其中 $L$ 为所有电子邮件地址的长度之和。
1
2
3
4
5
6
7
8
9
10
11
12
13
14 | class Solution:
def numUniqueEmails(self, emails: List[str]) -> int:
s = set()
for email in emails:
local, domain = email.split("@")
t = []
for c in local:
if c == ".":
continue
if c == "+":
break
t.append(c)
s.add("".join(t) + "@" + domain)
return len(s)
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22 | class Solution {
public int numUniqueEmails(String[] emails) {
Set<String> s = new HashSet<>();
for (String email : emails) {
String[] parts = email.split("@");
String local = parts[0];
String domain = parts[1];
StringBuilder t = new StringBuilder();
for (char c : local.toCharArray()) {
if (c == '.') {
continue;
}
if (c == '+') {
break;
}
t.append(c);
}
s.add(t.toString() + "@" + domain);
}
return s.size();
}
}
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23 | class Solution {
public:
int numUniqueEmails(vector<string>& emails) {
unordered_set<string> s;
for (const string& email : emails) {
size_t atPos = email.find('@');
string local = email.substr(0, atPos);
string domain = email.substr(atPos + 1);
string t;
for (char c : local) {
if (c == '.') {
continue;
}
if (c == '+') {
break;
}
t.push_back(c);
}
s.insert(t + "@" + domain);
}
return s.size();
}
};
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20 | func numUniqueEmails(emails []string) int {
s := make(map[string]struct{})
for _, email := range emails {
parts := strings.Split(email, "@")
local := parts[0]
domain := parts[1]
var t strings.Builder
for _, c := range local {
if c == '.' {
continue
}
if c == '+' {
break
}
t.WriteByte(byte(c))
}
s[t.String()+"@"+domain] = struct{}{}
}
return len(s)
}
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18 | function numUniqueEmails(emails: string[]): number {
const s = new Set<string>();
for (const email of emails) {
const [local, domain] = email.split('@');
let t = '';
for (const c of local) {
if (c === '.') {
continue;
}
if (c === '+') {
break;
}
t += c;
}
s.add(t + '@' + domain);
}
return s.size;
}
|
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 | use std::collections::HashSet;
impl Solution {
pub fn num_unique_emails(emails: Vec<String>) -> i32 {
let mut s = HashSet::new();
for email in emails {
let parts: Vec<&str> = email.split('@').collect();
let local = parts[0];
let domain = parts[1];
let mut t = String::new();
for c in local.chars() {
if c == '.' {
continue;
}
if c == '+' {
break;
}
t.push(c);
}
s.insert(format!("{}@{}", t, domain));
}
s.len() as i32
}
}
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22 | /**
* @param {string[]} emails
* @return {number}
*/
var numUniqueEmails = function (emails) {
const s = new Set();
for (const email of emails) {
const [local, domain] = email.split('@');
let t = '';
for (const c of local) {
if (c === '.') {
continue;
}
if (c === '+') {
break;
}
t += c;
}
s.add(t + '@' + domain);
}
return s.size;
};
|