面试题:子域名访问计数(java)

题目:一个网站域名,如"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 次。
 

思考过程:第一步先遍历字符串数组,把空格前后分为两部分放进一个数组里面,前面是数字,后面是域名。

第二步:对后面的域名用“.”进行分割并放进另一个数组里面,对数组进行遍历,分别对数组从0,1,2……n开始到数组.length的长度的元素和“.”进行拼接,得到每一个子域名。将每一个子域名作为key,将其被访问的次数作为value放进Map中。


代码如下

public class StringDemo {
    public static void main(String[] args) {
        Map<String,Integer> map=new HashMap<>();
        String[] cpdomains={"900 google.mail.com","50 yahoo.com","1 intel.mail.com","5 wiki.org"};
        for(String cpdomain:cpdomains){
            String[] a=cpdomain.split(" ");
            int n=Integer.valueOf(a[0]);
            String domain=a[1];
            String[] b=domain.split("\\.");
            for(int i=0;i<b.length;i++){
                String[] c= Arrays.copyOfRange(b,i,b.length);
                String subdomain=String.join(".",c);
                int oldCount=map.getOrDefault(subdomain,0);
                map.put(subdomain,oldCount+n);
            }
        }
        List<String>ret=new ArrayList<>();
        for(Map.Entry<String,Integer>e:map.entrySet()){
            String domin=e.getKey();
            int n=e.getValue();
            String s=String.format("%d%s",n,domin);
            ret.add(s);
        }
        System.out.println(ret);
    }
}

运行结果:

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值