LeeCode_01_Two sum
- Two Sum
Given an array of integers, return indices of the two numbers such that they add up to a specific target.
You may assume that each input would have exactly one solution, and you may not use the same element twice.
Example:
Given nums = [2, 7, 11, 15], target = 9,
Because nums[0] + nums[1] = 2 + 7 = 9,
return [0, 1].
翻译:
Sum : 和
indices:索引
assume:假设
给定一系列数,以及一个指定的值
现在要选出两个数,使其和等于指定数。
假设:1.必有唯一解;2.给出的数字仅能使用一次。
解法
a.循环的去求解。
时间复杂度n(n-1)
class Solution {
public int[] twoSum(int[] nums, int target) {
int [] result =new int[2];
int result_01;
int result_02;
int numsSize = nums.length;
for(int i = 0; i < numsSize; i++){
result_01 = nums[i];
result_02 = target - result_01;
for(int j =i+1; j < numsSize; j++ ) {
if(nums[j] == result_02){
result[0] = i;
result[1] = j;
return result;
}
}
}
return result;
}
}
19 / 19 test cases passed.
Status: Accepted
Runtime: 38 ms
b.需要对数组有更多的理解。。。。
自己觉得这道题的意义应该不是想上面的解法那样,单纯是对数组循环。
数组
下标:偏移量。
值:数组中存放的值
偏移量和值一一对应。
求解:两个特定值,值得和等于指定数。
数组中对对应值的查找方式: 遍历,二分等。应用场景是有区分的。。。。
现成的方法? 对方法内部实现的理解?对下标或值的操作的封装。
提高点:
1.map/字典/hashmap
应该可以把字典转换一下形式。利用高效率的方法。
------------------------------------2017/09/20--------------------------------------
我的其他解法:
class Solution {
public int[] twoSum(int[] nums, int target) {
int[] result = new int[2];
Integer result_01;
Integer result_02;
int i;
// 数值 ,,位置
List<Integer> indexList;
HashMap<Integer, List<Integer>> dataHashMap = new HashMap<>();
for (i = 0; i < nums.length; i++) {
result_01 = nums[i];
if (dataHashMap.containsKey(result_01)) {
indexList = dataHashMap.get(result_01);
indexList.add(i);
} else {
indexList = new ArrayList<>();
indexList.add(i);
}
dataHashMap.put(result_01, indexList);
}
for (i = 0; i < nums.length; i++) {
result_01 = nums[i];
result_02 = target - result_01;
if (dataHashMap.containsKey(result_02)) {
indexList = dataHashMap.get(result_02);
if (indexList.get(0) != i) {
result[0] = i;
result[1] = indexList.get(0);
return result;
} else if (indexList.size() > 1) {
result[0] = i;
result[1] = indexList.get(1);
return result;
}
}
}
return result;
}
}
19 / 19 test cases passed.
Status: Accepted
Runtime: 13 ms
从第二种解法来看比之前单独循环来说要好很多了。
但是还是有缺点,先总结:
- 以空间换时间。
- 第二次解法中的思路是利用hashmap去重新记录 值以及值的索引。利用高效率的hash算法得到数据。
- 缺点: 看了下其他人的算法,整理:
a.没必要去纯粹所有的数据的索引,有浪费。
b.使用hash去提高效率是ok,但自己开始有些地方没想明白,钻牛角尖了。。。。i. 数是由数组中的数据相加得到。
ii.能利用已知数得到另一个需要求的数,,,,,利用的数,不能一开始就假设是第一个。。。。
如果假设利用的数是第二数,那么第一个数必定在 我们的hashmap里面 :只需要去检测hashmap,如果没有则放入,然后循环。
好僵!!!!!!!!!!!!!!
and by the way:
3ms 那个代码,没看懂。。。。。。。。。
LeeCode_01_Two sum的更多相关文章
- LeetCode - Two Sum
Two Sum 題目連結 官網題目說明: 解法: 從給定的一組值內找出第一組兩數相加剛好等於給定的目標值,暴力解很簡單(只會這樣= =),兩個迴圈,只要找到相加的值就跳出. /// <summa ...
- Leetcode 笔记 113 - Path Sum II
题目链接:Path Sum II | LeetCode OJ Given a binary tree and a sum, find all root-to-leaf paths where each ...
- Leetcode 笔记 112 - Path Sum
题目链接:Path Sum | LeetCode OJ Given a binary tree and a sum, determine if the tree has a root-to-leaf ...
- POJ 2739. Sum of Consecutive Prime Numbers
Sum of Consecutive Prime Numbers Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 20050 ...
- BZOJ 3944 Sum
题目链接:Sum 嗯--不要在意--我发这篇博客只是为了保存一下杜教筛的板子的-- 你说你不会杜教筛?有一篇博客写的很好,看完应该就会了-- 这道题就是杜教筛板子题,也没什么好讲的-- 下面贴代码(不 ...
- [LeetCode] Path Sum III 二叉树的路径和之三
You are given a binary tree in which each node contains an integer value. Find the number of paths t ...
- [LeetCode] Partition Equal Subset Sum 相同子集和分割
Given a non-empty array containing only positive integers, find if the array can be partitioned into ...
- [LeetCode] Split Array Largest Sum 分割数组的最大值
Given an array which consists of non-negative integers and an integer m, you can split the array int ...
- [LeetCode] Sum of Left Leaves 左子叶之和
Find the sum of all left leaves in a given binary tree. Example: 3 / \ 9 20 / \ 15 7 There are two l ...
随机推荐
- PAT——1025. 反转链表
给定一个常数K以及一个单链表L,请编写程序将L中每K个结点反转.例如:给定L为1→2→3→4→5→6,K为3,则输出应该为3→2→1→6→5→4:如果K为4,则输出应该为4→3→2→1→5→6,即最后 ...
- HDU 1272小希的迷宫(裸并查集,要判断是否构成环,是否是连通图)
题目链接: http://acm.hdu.edu.cn/showproblem.php?pid=1272 小希的迷宫 Time Limit: 2000/1000 MS (Java/Others) ...
- GitHub学生认证示范
打开网址:https://education.github.com/ 点击Get Your Pack 点击I am a Student 填写资料上传学生证照片,等待通过,如果没有GitHub账号就注 ...
- Linux-- 文件编辑器 vi/vim(1)
初识 vi/vim 文本编辑器 1.vi 和 vim 相同,都是文本编辑器,在 vi 模式下可以查看文本,编辑文本,是 Linux 最常用的命令,vi 模式下分为三部分,第一部分一般模式,在一般模式中 ...
- PHP设置Redis key在当天有效|SCP对拷如何连接指定端口(非22端口)的远程主机
$redis->set($key,$value); $expireTime = mktime(23, 59, 59, date("m"), date("d" ...
- jQuery+zTree
0 zTree简介 树形控件的使用是应用开发过程中必不可少的.zTree 是一个依靠 jQuery 实现的多功能 “树插件”.优异的性能.灵活的配置.多种功能的组合是 zTree 最大优点. 0.0 ...
- webpack管理输出
管理html的bundle依赖 html-webpack-plugin可以自动给html添加bundle文件 npm install --save-dev html-webpack-plugin co ...
- html-html简介
一.什么是HTML? HypeText Markup Language:超文本标记语言,网页语言 超文本:超出文本的范畴,使用HTML可以轻松实现这样的操作 标记:HTML所有的操作都是通过标记实现的 ...
- Quick find Helper
using System; using Microsoft.Xrm.Sdk; using Microsoft.Crm.Sdk.Messages; /// <summary> /// 视图 ...
- MySQL用户账户管理/权限管理/资源限制
MySQL 的权限表在数据库启动的时候就载入内存,当用户通过身份认证后,就在内存中进行相应权限的存取,这样,此用户就可以在数据库中做权限范围内的各种操作了. mysql 的权限体系大致分为5个层级: ...