carloscn / structstudy

Leetcode daily trainning by using C/C++/RUST programming.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

两数之和(leetcode-1)

carloscn opened this issue · comments

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

你可以假设每种输入只会对应一个答案。但是,数组中同一个元素在答案里不能重复出现。

你可以按任意顺序返回答案。

示例 1:

输入:nums = [2,7,11,15], target = 9
输出:[0,1]
解释:因为 nums[0] + nums[1] == 9 ,返回 [0, 1] 。
示例 2:

输入:nums = [3,2,4], target = 6
输出:[1,2]
示例 3:

输入:nums = [3,3], target = 6
输出:[0,1]
 

提示:

2 <= nums.length <= 104
-109 <= nums[i] <= 109
-109 <= target <= 109
只会存在一个有效答案

来源:力扣(LeetCode)
链接:https://leetcode.cn/problems/two-sum

解题:

确定一个数值之后,然后在子数组中查找数据。

static int32_t print_target_sum(const int32_t nums[], size_t len, int32_t target)
{
    int32_t ret = 0;
    size_t index[2] = {0};
    int32_t cacu_target = target;
    int32_t try_val = 0;
    size_t i = 0, j = 0;

    if (0 == len) {
        ret = -1;
        goto finish;
    }

    UTILS_CHECK_PTR(nums);

    for (i = 0; i < len; i ++) {
        try_val = nums[i];
        cacu_target = target - try_val;
        for (j = i + 1; j < len; j ++) {
            if (cacu_target == nums[j]) {
                index[0] = i;
                index[1] = j;
                break;
            }
        }
    }
    LOG("the indexes are (%zd, %zd) \n", index[0], index[1]);

finish:
    return ret;
}