力扣LeetCode 热题 HOT 100 C++ (1/100) 两数之和

写了两种写法,第一种暴力算法,用数组,两层循环,时间复杂度O(n^2)

法的思路是:

  • 创建一个空的结果数组 res
  • 使用双重循环遍历每对数字 (nums[i], nums[j])
  • 如果它们的和为目标值,将它们的索引 i 和 j 添加到结果数组res中并返回
  • 如果没有找到匹配的数字对,返回空的结果数组
class Solution {
public:
    vector twoSum(vector& nums, int target) {
        vector res;
        for(int i = 0; i < nums.size() - 1; i++){
            for(int j = i + 1; j 

第二种写法用哈希表,时间复杂度O(n)

第一次写的程序为

class Solution {
public:
    vector twoSum(vector& nums, int target) {
        u

你可能感兴趣的:(寒假刷题计划,leetcode,c++,算法)