Frankjunyu 2016-01-21 17:13 采纳率: 58.8%
浏览 9319
已采纳

求大神帮忙 C语言 LeetCode的 Two Sum问题

求大神帮忙。我run时显示Runtime Error,不知道问题在哪里。。
还有,我也不理解注释中的: * Note: The returned array must be malloced, assume caller calls free(). 这句是什么意思

题目:
Given an array of integers, find two numbers such that they add up to a specific target number.

The function twoSum should return indices of the two numbers such that they add up to the target, where index1 must be less than index2. Please note that your returned answers (both index1 and index2) are not zero-based.

You may assume that each input would have exactly one solution.

Input: numbers={2, 7, 11, 15}, target=9
Output: index1=1, index2=2

Subscribe to see which companies asked this question

我的代码:
/**

  • Note: The returned array must be malloced, assume caller calls free(). / int twoSum(int* nums, int numsSize, int target) { int i,j; int index1,index2; for(i=0;i<numsSize;i++) { for(j=0;j<numsSize;j++) { if(nums[i]!=0 && nums[j]!=0) { if(nums[i]+nums[j]==target) { if(nums[i]<=nums[j]) { index1=i+1; index2=j+1; } else { index1=j+1; index2=i+1; } } } } } printf("[%d,%d]",index1,index2); }
  • 写回答

2条回答 默认 最新

  • threenewbee 2016-01-21 18:57
    关注
     int* twoSum(int* nums, int numsSize, int target) {
        int i,j;
        int index1,index2;
        for(i=0;i<numsSize;i++)
        {
            for(j=0;j<numsSize;j++)
            {
                if(nums[i]!=0 && nums[j]!=0)
                {
                    if(nums[i]+nums[j]==target)
                    {
                        if(nums[i]<=nums[j])
                        {
                            index1=i+1;
                            index2=j+1;
                        }
                        else
                        {
                            index1=j+1;
                            index2=i+1;
                        }
                    }
                }
            }
        }
        printf("[%d,%d]",index1,index2);
        int * arr = (int *)malloc(sizeof(int) * 2);
        arr[0] = index1;
        arr[1] = index2;
        return arr;
    }
    
    int main()
    {
        int nums[] = {2,7,11,15};
        int *p  = twoSum(nums, 4, 9);
        free(p);
    }
    

    如果你的程序没有别的错,它和它的调用者应该是这样的

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 一道python难题2
  • ¥15 一道python难题
  • ¥15 用matlab 设计一个不动点迭代法求解非线性方程组的代码
  • ¥15 牛顿斯科特系数表表示
  • ¥15 arduino 步进电机
  • ¥20 程序进入HardFault_Handler
  • ¥15 oracle集群安装出bug
  • ¥15 关于#python#的问题:自动化测试
  • ¥20 问题请教!vue项目关于Nginx配置nonce安全策略的问题
  • ¥15 教务系统账号被盗号如何追溯设备