欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Leetcode 1. 两数之和

程序员文章站 2022-03-07 11:53:48
...

Leetcode 1. 两数之和

1、问题分析

题目链接:https://leetcode-cn.com/problems/two-sum/
  直接暴力**即可,毕竟是简单题。代码我已经进行了详细的注释,理解应该没有问题,读者可以作为参考,如果看不懂(可以多看几遍),欢迎留言哦!我看到会解答一下。

2、问题解决

  笔者以C++方式解决。

#include "iostream"

using namespace std;

#include "algorithm"
#include "vector"
#include "queue"
#include "set"
#include "map"
#include "cstring"
#include "stack"

class Solution {
private:
    // 结果数组
    vector<int> result;
public:
    vector<int> twoSum(vector<int> &nums, int target) {
        dealChen2(nums, target);
        return result;
    }

    /**
     * 暴力**法,直接遍历整个数组,依次取两个元素进行比较
     * @param nums
     * @param target
     */
    void dealChen2(vector<int> &nums, int target) {
        for (int i = 0; i < nums.size(); ++i) {
            for (int j = i + 1; j < nums.size(); ++j) {
                // 寻找到符合条件的值,保存结果并返回
                if (nums[i] + nums[j] == target) {
                    result.push_back(i);
                    result.push_back(j);
                    return;
                }
            }
        }
    }

};

int main() {
    vector<int> nums = {2, 7, 11, 15};
    int target = 9;
    Solution *pSolution = new Solution;
    auto vector1 = pSolution->twoSum(nums, target);
    for (int i = 0; i < vector1.size(); ++i) {
        cout << vector1[i] << " ";
    }
    cout << endl;

    system("pause");
    return 0;
}

运行结果

Leetcode 1. 两数之和

有点菜,有时间再优化一下。

3、总结

  难得有时间刷一波LeetCode, 这次做一个系统的记录,等以后复习的时候可以有章可循,同时也期待各位读者给出的建议。算法真的是一个照妖镜,原来感觉自己也还行吧,但是算法分分钟教你做人。前人栽树,后人乘凉。在学习算法的过程中,看了前辈的成果,受益匪浅。
感谢各位前辈的辛勤付出,让我们少走了很多的弯路!
哪怕只有一个人从我的博客受益,我也知足了。
点个赞再走呗!欢迎留言哦!

相关标签: LeetCode Hot100