如转发 请标明出处!
来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/two-sum/
给定一个整数数组 nums和一个整数目标值 target,在该数组中找出和为目标值 target 的那两个整数,并返回它们的数组下标。可以假设每种输入只会对应一个答案。而且,数组中同一个元素在答案里不能重复出现。可以按任意顺序返回答案。
我的解答
#include <stdio.h>
UINT64 twoSum
(
INT32 *nums,
UINT32 numsSize,
INT32 target)
{
UINT32 i;
UINT32 j;
UINT64 result = 0;
for(i = 0; i < numsSize; ++i)
{
for(j = i + 1; j < numsSize; ++j)
{
if(nums[i] + nums[j] == target)
{
result = (UINT64)i | ((UINT64)j<<32);
/* break the loop */
i = numsSize;
i = numsSize;
}
}
}
return result;
}
/* test case */
void test(INT32 target)
{
INT32 data[] = {1, 2, 4, 7, 12};
UINT64 result = twoSum(data, 5, target);
if(result != 0)
printf("%d + %d = %d\n", data[result>>32], data[result&0xffffffff], target);
}
与官方的主要区别
我是泰山 专注VX好多年!
一起学习 共同进步!