LeetCode题解(0811):计算子域名访问次数(Python)
发布日期:2021-06-29 19:54:22 浏览次数:2 分类:技术文章

本文共 811 字,大约阅读时间需要 2 分钟。

题目:(简单)

解法 时间复杂度 空间复杂度 执行用时
Ans 1 (Python) O ( N × k ) O(N×k) O(N×k) : k为平均包含子域名数量 O ( N ) O(N) O(N) 64ms (84.25%)
Ans 2 (Python)
Ans 3 (Python)

LeetCode的Python执行用时随缘,只要时间复杂度没有明显差异,执行用时一般都在同一个量级,仅作参考意义。

解法一(哈希表):

def subdomainVisits(self, cpdomains: List[str]) -> List[str]:    hashmap = {
} for cpdomain in cpdomains: cp_split = cpdomain.split(" ") num = int(cp_split[0]) domain = cp_split[1] while len(domain) > 0: if domain not in hashmap: hashmap[domain] = num else: hashmap[domain] += num if "." not in domain: break else: domain = domain[domain.index(".") + 1:] ans = [] for key, value in hashmap.items(): ans.append(str(value) + " " + key) return ans

转载地址:https://dataartist.blog.csdn.net/article/details/107076083 如侵犯您的版权,请留言回复原文章的地址,我们会给您删除此文章,给您带来不便请您谅解!

上一篇:LeetCode精讲(0812):在集合中取出三个点,组成最大面积三角形(Python)
下一篇:LeetCode题解(0806):写字符串所需的行数(Python)

发表评论

最新留言

路过,博主的博客真漂亮。。
[***.116.15.85]2024年04月26日 08时09分33秒