美文网首页
leetcode-1.两数之和(OC)

leetcode-1.两数之和(OC)

作者: money_ac9e | 来源:发表于2022-01-20 20:30 被阅读0次

两数之和

地址:https://leetcode-cn.com/problems/two-sum/

给定一个整数数组 nums 和一个整数目标值 target,请你在该数组中找出 和为目标值 target 的那 两个 整数,并返回它们的数组下标。

你可以假设每种输入只会对应一个答案。但是,数组中同一个元素在答案里不能重复出现。

你可以按任意顺序返回答案。

示例 1:
输入:nums = [2,7,11,15], target = 9
输出:[0,1]
解释:因为 nums[0] + nums[1] == 9 ,返回 [0, 1] 。

示例 2:
输入:nums = [3,2,4], target = 6
输出:[1,2]

示例 3:
输入:nums = [3,3], target = 6
输出:[0,1]

提示:
2 <= nums.length <= 104
-109 <= nums[i] <= 109
-109 <= target <= 109
只会存在一个有效答案

方法1 暴力破解法

两个for循环得到答案
这里需要注意 第二个for循环从i+1开始,之前的都匹配过了
干代码

- (NSArray *)getResultWith:(NSArray *)nums withTarget:(NSInteger)target
{
    for (int i=0; i<nums.count; i++) {
        
        NSNumber *a = nums[i];
        
        for (int j=i+1; j<nums.count; j++) {
            
            NSNumber *b = nums[j];

            if (a.intValue + b.intValue == target) {
                return @[@(i),@(j)];
            }
        }
    }
    
    return @[];
}

方法1 使用哈希表(字典)保存

使用哈希表(字典) 将值作为key index作为value
for循环时 查找哈希表中是否有另一个key 有则返回
干代码

- (NSArray *)getResult2With:(NSArray *)nums withTarget:(NSInteger)target
{
    NSDictionary *params = [NSMutableDictionary dictionary];
    
    for (int i=0; i<nums.count; i++) {
        
        NSNumber *a = nums[i];
        NSInteger b = target - a.intValue;
        
        if ([params.allKeys containsObject:[NSString stringWithFormat:@"%ld",b]]) {
            
            NSString *bb = [NSString stringWithFormat:@"%ld",b];
            NSNumber *j = params[bb];
            
            return @[j,@(i)];
        }
        
        [params setValue:@(i) forKey:[NSString stringWithFormat:@"%@",a]];
        
    }
    
    return @[];
}

相关文章

网友评论

      本文标题:leetcode-1.两数之和(OC)

      本文链接:https://www.haomeiwen.com/subject/jccshrtx.html