Map - leetcode [哈希表]

Posted 会咬人的兔子

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Map - leetcode [哈希表]相关的知识,希望对你有一定的参考价值。

149. Max Points on a Line

unordered_map<float, int> hash 记录的是斜率对应的点数

unordered_map<float, int>::iterator it = hash.begin(); it != hash.end(); it++

斜率k = (y2 - y1) / (x2 - x1)

最后记得加上duplicate的点数

以上是关于Map - leetcode [哈希表]的主要内容,如果未能解决你的问题,请参考以下文章

LeetCode 哈希表 387. 字符串中的第一个唯一字符(计数哈希表,字符串)

LeetCode 442 数组中重复的数据[哈希表] HERODING的LeetCode之路

LeetCode 726 原子的数量[Map 栈] HERODING的LeetCode之路

LeetCode 560 和为K的子数组[哈希表 前缀和] HERODING的LeetCode之路

LeetCode 1418 点菜展示表[Map] HERODING的LeetCode之路

1哈希表-两数之和