188、独特的电子邮件地址

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

例如,在 [email protected]中, alice 是本地名称,而 leetcode.com 是域名。

除了小写字母,这些电子邮件还可能包含 ‘,’ 或 ‘+’。

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

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

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

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

示例:

输入:[“[email protected]”,“[email protected]”,“[email protected]”]
输出:2
解释:实际收到邮件的是 "[email protected]" 和 "[email protected]"。

提示:

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

代码:一步成功的

class Solution {
    public int numUniqueEmails(String[] emails) {
    		Set<String> result = new HashSet<>();
		for (int i = 0; i < emails.length; i++) {
			String tem[] = emails[i].split("@");
			int index = tem[0].replaceAll(".", "").indexOf("+");
			//表明没有+
			if(index == -1){
				result.add(tem[0].replaceAll(".", "") + tem[1]);
			}else {
				//表明有+
				result.add(tem[0].replaceAll(".", "").substring(0,index) + tem[1]);
			}
		//	System.out.println(result.toString());
		}
	   return result.size();
    }
}

排名靠前的代码
这代码明显有问题啊???

class Solution {
    public int numUniqueEmails(String[] emails) {
        Set<String> set = new HashSet<>();
        for(String str : emails){
            int n = str.indexOf('@');
            String temp = str.substring(n);
            set.add(temp);
        }
        
        return set.size();
    }
}

这个代码才是排名靠前且符合题目意思的:

class Solution {
    public int numUniqueEmails(String[] emails) {
       HashSet<String> filters = new HashSet<>();
        for(String email:emails){
            String[] splits = email.split("@");
           String prefix=splits[0];
           String filter= prefix.substring(0,prefix.indexOf("+")).replaceAll(".","")+splits[1];
        
            filters.add(filter);
           
        }
        return filters.size();
    }
}

猜你喜欢

转载自blog.csdn.net/qq_34446716/article/details/86302506
今日推荐