1_两数之和

简介: 1_两数之和

1_两数之和


 

package 数组;
import java.lang.reflect.Array;
import java.util.Arrays;
/**
 * https://leetcode-cn.com/problems/two-sum/
 * 
 * @author Huangyujun
 * 方法一:暴力法:
 */
public class _1_两数之和 {
    public int[] twoSum(int[] nums, int target) {
//        Arrays.sort(nums);    //对数组nums 进行排序,不能排序,排序导致下标结果改变
        //通过map 结构呢? 一对又一对的情况
        int[] index = new int[2];
        //两层循坏
        for(int i = 0; i < nums.length - 1; i++) {
            int second = target - nums[i];
            for(int j = i + 1; j <= nums.length - 1; j++) {
                if(second == nums[j]) {
                    index[0] = i;
                    index[1] = j;
                    return index;
                }    
            }
        }
        return null;
    }
    /**
     * 方法2:通过 键值对的哈希表Map 结构,通过 值获取到下标 hashtable.get(target - nums[i])
     *  且通过:hashtable.containsKey(target - nums[i]) 获取到second 这个数是否存在
     *  遍历过程中(边找边put 进去键值对【值,下标】),没有找到,就继续put
     * @param nums
     * @param target
     * @return
     */
//     public int[] twoSum(int[] nums, int target) {
//            Map<Integer, Integer> hashtable = new HashMap<Integer, Integer>();
//            for (int i = 0; i < nums.length; ++i) {
//                if (hashtable.containsKey(target - nums[i])) {
//                    return new int[]{hashtable.get(target - nums[i]), i};
//                }
//                hashtable.put(nums[i], i);
//            }
//            return new int[0];
//        }
}



目录
相关文章
|
27天前
两数之和
给定整数数组 `nums` 和目标值 `target`,任务是在数组中找到和为 `target` 的两个整数并返回它们的下标。每个输入保证有唯一解,且不能重复使用同一元素。示例展示了不同情况下的输入与输出,暴力破解法通过两层循环遍历所有可能的组合来寻找解。
|
3月前
|
存储 算法 C++
LeetCode第二题(两数相加)
这篇文章是关于LeetCode上第二题“两数相加”的题解,其中详细描述了如何使用C++语言来实现将两个逆序存储的非负整数链表相加,并返回结果链表的算法。
38 0
LeetCode第二题(两数相加)
|
3月前
|
Python
01、两数之和——2021-04-12
01、两数之和——2021-04-12
13 0
|
3月前
|
存储
Leetcode第29题(两数相除)
LeetCode第29题要求使用不包含乘法、除法和mod运算符的方法计算两个整数的商,通过记录结果的正负,将问题转化为负数处理,并利用二进制幂次方的累加来逼近除数,最后根据结果的正负返回相应的商。
20 0
|
3月前
|
Go Python
01.两数之和
01.两数之和
16 0
|
5月前
|
算法
LeetCode第29题两数相除
这篇文章介绍了LeetCode第29题"两数相除"的解题方法,通过使用加法、减法和二进制位移法代替常规的乘除操作,并考虑了整数溢出问题,提供了一种高效的算法解决方案。
LeetCode第29题两数相除
|
7月前
1.两数之和
1.两数之和
|
8月前
leetcode-29:两数相除
leetcode-29:两数相除
49 0