LeetCode:811.子域名访问计数

题目:

一个网站域名,如"discuss.leetcode.com",包含了多个子域名。作为顶级域名,常用的有"com",下一级则有"leetcode.com",最低的一级为"discuss.leetcode.com"。当我们访问域名"discuss.leetcode.com"时,也同时访问了其父域名"leetcode.com"以及顶级域名 "com"。

给定一个带访问次数和域名的组合,要求分别计算每个域名被访问的次数。其格式为访问次数+空格+地址,例如:"9001 discuss.leetcode.com"。

接下来会给出一组访问次数和域名组合的列表cpdomains 。要求解析出所有域名的访问次数,输出格式和输入格式相同,不限定先后顺序。

示例 1:
输入: 
["9001 discuss.leetcode.com"]
输出: 
["9001 discuss.leetcode.com", "9001 leetcode.com", "9001 com"]
说明: 
例子中仅包含一个网站域名:"discuss.leetcode.com"。按照前文假设,子域名"leetcode.com""com"都会被访问,所以它们都被访问了9001次。
示例 2
输入: 
["900 google.mail.com", "50 yahoo.com", "1 intel.mail.com", "5 wiki.org"]
输出: 
["901 mail.com","50 yahoo.com","900 google.mail.com","5 wiki.org","5 org","1 intel.mail.com","951 com"]
说明: 
按照假设,会访问"google.mail.com" 900次,"yahoo.com" 50次,"intel.mail.com" 1次,"wiki.org" 5次。
而对于父域名,会访问"mail.com" 900+1 = 901次,"com" 900 + 50 + 1 = 951次,和 "org" 5 次。

源码:

class Solution {
    public List<String> subdomainVisits(String[] cpdomains) {
        List<String> list = new ArrayList<>();
        Map<String, Integer> map = new HashMap<>();
        for (String str : cpdomains) {
            // 将字符串前面的访问数量和域名分离
            String[] s = str.split(" ");
            // 将域名按照 . 分割开来
            String[] x = s[1].split("\\."); // 注意此处需要转义
            StringBuilder sb = new StringBuilder();
            // 依次从后面将分割开来的子域名加入 sb 中
            // 并且将对应访问的数量加入到 map 之中
            for (int i = x.length - 1; i >= 0; i--) {
                if (i == x.length - 1) {
                    sb.insert(0, x[i]);
                } else {
                    sb.insert(0, ".");
                    sb.insert(0, x[i]);
                }
                String x2 = sb.toString();
                map.put(x2, map.getOrDefault(x2, 0)
                + Integer.valueOf(s[0]));
            }
        }
        // 将 map 中的子域名的访问数量加上空格再加上子域名
        // 加入 list 之中
        for (String s2 : map.keySet()) {
            list.add(map.get(s2) + " " + s2);
        }
        return list;
    }
}
发布了340 篇原创文章 · 获赞 2 · 访问量 8288

猜你喜欢

转载自blog.csdn.net/qq_45239139/article/details/104073368
今日推荐