Two sum-LeetCode(C语言实现)

今天用C写了LeetCode第一个题目,题目如下:

   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].

算法一句话概括就是从数组里面取2个数若和为9则返回下标。我用C写出来后却报错了。我把代码放在VC6.0上运行却是成功的,代码如下:

/**
 * Note: The returned array must be malloced, assume caller calls free().
 */
int* twoSum(int* nums, int numsSize, int target) {
     int *indice = (int*)malloc(2*sizeof(int)); 
    for(int i=0;i<=numsSize-1;i++){
        for(int j=0;j<=numsSize-1;j++){
            if((nums[i]+nums[j]==target)&(i!=j)){
                indice[1]=i;
                indice[0]=j;
                
            }
                
        }
    }
    return indice;
}

void main(void){
    int nums[4]={2,7,11,15},target=9,numsSize=4;
    int* p=twoSum(nums,numsSize,target);
    printf("[%d,%d]\n",p[0],p[1]);
    
}

代码运行结果如下:

 

我提交后却是:

 

后来发现与系统自带main冲突,思考了2下,突然灵光一现,去掉main函数提交不就行了:

/**
 * Note: The returned array must be malloced, assume caller calls free().
 */
int* twoSum(int* nums, int numsSize, int target) {
     int *indice = (int*)malloc(2*sizeof(int)); 
    for(int i=0;i<=numsSize-1;i++){
        for(int j=0;j<=numsSize-1;j++){
            if((nums[i]+nums[j]==target)&(i!=j)){
                indice[1]=i;
                indice[0]=j;
                
            }
                
        }
    }
    return indice;
}
   

结果果不其然:

原来只需要写他定义好的函数就写了,打扰了。。。。。。。。。。。。

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值