C++//leecode-1两数之和
2022/1/3 17:07:57
本文主要是介绍C++//leecode-1两数之和,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
题目如下
给定一个整数数组 nums 和一个整数目标值 target,请你在该数组中找出 和为目标值 target 的那 两个 整数,并返回它们的数组下标。你可以假设每种输入只会对应一个答案。但是,数组中同一个元素在答案里不能重复出现。
你可以按任意顺序返回答案。
给了vector,那就用vector做吧
前情提要:
1.关于vector
菜鸟:vector用法总结
大佬:vector总结
大佬:迭代器总结
2.关于map
大佬:map用法总结
大佬:unordered_map和map区别
法一:暴力求解 /O(N^2)
略
法二:利用unordered_map匹配/O(N) ||利用map/O(logN)
#define pb push_back #define pii pair<int,int> class Solution { public: unordered_map<int,int> mapp; vector<int> twoSum(vector<int>& nums, int target) { vector<int> res; res.clear(); for(int i=0;i<nums.size();i++){ int op=target-nums[i]; if(mapp.count(op)!=0){ res.pb(mapp[op]); res.pb(i); }else{ mapp.insert(pii(nums[i],i)); } } return res; } };
另:如果有序,二分法
(没看清题,一开始就去二分了 (T^T)&& 正确性待验)
#define pb push_back class Solution { public: int j=-1; void makehalf(int n,vector<int>& nums){ int length=nums.size(); int mid=length/2; int low=0; int high=length; for(;low<=high;){ mid=(low+high)/2; if(nums[mid]==n){ j=mid; //cout<<mid<<endl; break; }else if(n>nums[mid]){ low=mid+1; }else{ high=mid-1; } } return; } vector<int> twoSum(vector<int>& nums, int target) { vector<int> res; res.clear(); for(int i=0;i<nums.size();i++){ int op=target-nums[i]; // cout<<op<<endl; makehalf(op,nums); if(j!=-1&&i!=j){ res.pb(i); res.pb(j); break; } } return res; } };
这篇关于C++//leecode-1两数之和的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-23增量更新怎么做?-icode9专业技术文章分享
- 2024-11-23压缩包加密方案有哪些?-icode9专业技术文章分享
- 2024-11-23用shell怎么写一个开机时自动同步远程仓库的代码?-icode9专业技术文章分享
- 2024-11-23webman可以同步自己的仓库吗?-icode9专业技术文章分享
- 2024-11-23在 Webman 中怎么判断是否有某命令进程正在运行?-icode9专业技术文章分享
- 2024-11-23如何重置new Swiper?-icode9专业技术文章分享
- 2024-11-23oss直传有什么好处?-icode9专业技术文章分享
- 2024-11-23如何将oss直传封装成一个组件在其他页面调用时都可以使用?-icode9专业技术文章分享
- 2024-11-23怎么使用laravel 11在代码里获取路由列表?-icode9专业技术文章分享
- 2024-11-22怎么实现ansible playbook 备份代码中命名包含时间戳功能?-icode9专业技术文章分享