1 Star 0 Fork 0

gcc/leetcode

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
Solution23.h 1.24 KB
一键复制 编辑 原始数据 按行查看 历史
gcc 提交于 2022-10-16 13:16 . leetcode 刷题
//
// Created by 高森森 on 2022/2/7.
//
#ifndef LEETCODE_SOLUTION23_H
#define LEETCODE_SOLUTION23_H
#include <iostream>
#include <vector>
#include <queue>
#include<unordered_map>
#include<float.h>
#include <algorithm>
using namespace std;
class Solution23 {
public:
vector<int> bestLine(vector<vector<int>>& points) {
int maxCnt=2;
vector<int>res{0,1};
for(int i=0;i<points.size();i++)
{
//注意这个map是每个i节点开始重新创建,因为为了计数重复
unordered_map<double,pair<int,vector<int>>>hashmap;
int x1=points[i][0];
int y1=points[i][1];
for(int j=i+1;j<points.size();j++){
int x2=points[j][0];
int y2=points[j][1];
double k=(x1==x2)?DBL_MAX:(double)(y1-y2)/(double)(x1-x2);
if(!hashmap.count(k)){
hashmap[k]=make_pair(2,vector<int>{i,j});
}else{
hashmap[k].first++;
}
if(hashmap[k].first>maxCnt){
maxCnt=hashmap[k].first;
res=hashmap[k].second;
}
}
}
return res;
}
};
#endif //LEETCODE_SOLUTION23_H
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/gcc421/leetcode.git
git@gitee.com:gcc421/leetcode.git
gcc421
leetcode
leetcode
master

搜索帮助