码迷,mamicode.com
首页 > 其他好文 > 详细

LeetCode刷题-001两数之和

时间:2018-05-24 23:07:07      阅读:322      评论:0      收藏:0      [点我收藏+]

标签:turn   ==   mss   示例   int   nbsp   twosum   ++   malloc   

给定一个整数数列,找出其中和为特定值的那两个数。
你可以假设每个输入都只会有一种答案,同样的元素不能被重用。
示例:
给定 nums = [2, 7, 11, 15], target = 9
因为 nums[0] + nums[1] = 2 + 7 = 9
所以返回 [0, 1]

 1 int* twoSum(int* nums, int numsSize, int target) 
 2 {
 3     int i,j;
 4     int* p=(int*)malloc(sizeof(int)*2);
 5     for(i=0;i<numsSize;i++)
 6     {
 7         for(j=i+1;j<numsSize;j++)
 8         {
 9             if(nums[i]+nums[j]==target)
10             {
11                 p[0]=i;
12                 p[1]=j;
13             }
14         }
15     }
16     return p;
17 }

 

LeetCode刷题-001两数之和

标签:turn   ==   mss   示例   int   nbsp   twosum   ++   malloc   

原文地址:https://www.cnblogs.com/nkqlhqc/p/9085471.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!