LeetCode刷题:第一题 两数之和

Posted Lee先森的博客

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LeetCode刷题:第一题 两数之和相关的知识,希望对你有一定的参考价值。

从今天开始刷LeetCode

 

第一题:两数之和

题目描述:

给定一个整数数组 nums 和一个目标值 target,请你在该数组中找出和为目标值的那 两个 整数,并返回他们的数组下标。

你可以假设每种输入只会对应一个答案。但是,你不能重复利用这个数组中同样的元素。

示例:

给定 nums = [2, 7, 11, 15], target = 9

因为 nums[0] + nums[1] = 2 + 7 = 9
所以返回 [0, 1]


代码如下:
 1 /**
 2  * Note: The returned array must be malloced, assume caller calls free().
 3  */
 4 int* twoSum(int* nums, int numsSize, int target) {
 5     static int a[2] = {0};
 6     
 7     for (int i = 0; i < numsSize; i++) {
 8         for (int j = i + 1; j < numsSize; j++) {
 9             if (nums[i] + nums[j] == target) {
10                 a[0] = i;
11                 a[1] = j;
12                 return a;
13             }
14         }
15     }
16     return 0;
17 }

这道题简单,就不做过多解释。

以上是关于LeetCode刷题:第一题 两数之和的主要内容,如果未能解决你的问题,请参考以下文章

Leetcode第一题:两数之和

LeetCode 第一题 两数之和

力扣(LeetCode) -- 算法第一题-- 两数之和

leetcode中的两数之和(第一题:简单)

用Java做LeetCode第一题:两数之和

LeetCode刷题167-简单-两数之和