LeetCode.1 - two sum

本文深入解析了经典的“两数之和”算法问题,旨在寻找数组中两个数的组合,使其和等于特定目标值。文章详细介绍了算法的实现过程,并提供了一段C语言代码示例,展示了如何通过双层循环遍历数组来找到符合条件的两个元素。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

  Given an array of integers, return indices of the two numbers such that they add up to a specific target.

  You may assume that each input would have exactly one solution, and you may not use the same element twice.

  Example:

  Given nums = [2, 7, 11, 15], target = 9,

  Because nums[0] + nums[1] = 2 + 7 = 9,
  return [0, 1].

  C code:

/**
 * Note: The returned array must be malloced, assume caller calls free().
 */
int* twoSum(int* nums, int numsSize, int target) {
    
    int* p;
    int i, j;

    p = malloc(sizeof(int)*2);

    for(i = 0; i < numsSize; i++)
        for(j = 0; j < numsSize; j++)
        {
            if(nums[i] + nums[j] == target && i != j)
            {
                p[0] = j;
                p[1] = i;
                break;
            }
        }

    return p;
}

  Submission Result: Accepted

  题目是说给一个int *twoSum()函数,参数为指向整型数组的指针、数组的大小和一个数据,从数组中找到任意两个数相加起来等于从主函数传来的实参,返回数组中这两个数的下标(note:下标不能相同,必须是两个不同的数相加)。

转载于:https://www.cnblogs.com/darkchii/p/7475746.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值