问题简介
给定一个整数数组 nums 和一个整数目标值 target,请你在该数组中找出和为目标值 target 的那两个整数,并返回它们的数组下标。
你可以假设每种输入只会对应一个答案。但是,数组中同一个元素在答案里不能重复出现。
你可以按任意顺序返回答案。
示例一
输入:nums = [2,7,11,15], target = 9
输出:[0,1]
解释:因为 nums[0] + nums[1] == 9 ,返回 [0, 1] 。
示例二
输入:nums = [3,2,4], target = 6
输出:[1,2]
实例三
输入:nums = [3,3], target = 6
输出:[0,1]
提示:
①2 <= nums.length <= 104
②-109 <= nums[i] <= 109
③-109 <= target <= 109
④只会存在一个有效答案
代码(C语言):
/**
* Note: The returned array must be malloced, assume caller calls free().
*/
int* twoSum(int* nums, int numsSize, int target, int* returnSize){
int i,j;
int* result = (int*)malloc(sizeof(int)*2); //申请空间,大小为2个int型,由于malloc函数没有返回,所以需要强制转换成int*型
*returnSize = 2;
for(i=0;i<numsSize;i++){
for(j=i+1;j<numsSize;j++){
if(nums[i]+nums[j]==target){
result[0] = i;
result[1] = j;
}
}
}
return result;
}
时间复杂度为O(n^2)
等有时间想个更小的时间复杂度的方法。