由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
JobHunting版 - 求点评:电话面试(今天第二天没有消息回复,感觉可能挂了)
相关主题
关于Hash_map怎么找一个数组里面,出现次数是偶数的数?
A家新鲜面经--都是经典题自己写了个graph的class但是不work 求指点
请教LeetCode的3Sum问个Java的HashSet.contains的问题
LeetCode 的 4 sum 问题 如何用hash table做呢?请问这道题如何做?Zero-one multiple
4sum o(n^2)超时lintcode subarray sum 怎么做?
问一下OJ的Anagrams那道题F电面
LRU cache 问题Linked电面分享,挺好的题 应该已挂
LRU cache 超时为啥大家都说刷题无用呢
相关话题的讨论汇总
话题: integer话题: pair话题: count话题: target话题: sum
进入JobHunting版参与讨论
1 (共1页)
x****y
发帖数: 252
1
以下是code面试题目,和我给的答案。答案有错,我标识了出来。请各位点评一下,进
一步提高!多谢!!!
面试管是印度人,
第一步,讨论解法:要求用实例,我给了 array (1,9,2,3,1,5,6,7,9,9) 和sum 10
,说用mapping hashmap,面试管表示明白了。第二步,面试管提出实例中的整数可能
有重复,我提出用第二个hash map :intCountsMap,解释其记录整数出现的次数,以
及使用。他表示不很理解,然后要求coding。
// Write a method that takes in two parameters (an array of integers and an
integer x). Print out the pairs of integers in the array that sum to x.
List> getSumPairs(List array, Integer
sum){
//Collections.sort(array);
Map mapping=new HashMap();
Map intCountsMap=new HashMap();
List> res=new ArrayList Integer>>();
for(int i=0;i Integer n=array.get(i);
Integer target = mapping.get(n); //*** 这里在回答时 开始对了,
后来犯晕,n改成sum-n
if(target!=null){
//found:
Integer c=intCountsMap.get(target);
if(c>0){
res.add(new Pair(n,target));
intCountsMap.put(target,--c); //*** 这里,--c 笔误成c--
, 但是不知道考官会不会理解成知识点不牢
}
continue; //next item
}
Integer count=intCountsMap.get(n);
if(count==null){
intCountsMap.put(n,Integer.valueOf(1));
}else{
intCountsMap.put(n,++count); //*** 同样这里,++count 笔误成
count++ , 但是不知道考官会不会理解成知识点不牢
}
//Mapping: if count
if(target ==null){
mapping.put(sum-n, n);
}

}
return res;

}
g********i
发帖数: 770
2
他可能是想让你sort之后用two pointers做。
烙印你懂的。。。
x****y
发帖数: 252
3
这个面试管的期望答案,太难了点吧?
我一次的coding,就通过,很少。白板检查排错的能力也不强。
1 (共1页)
进入JobHunting版参与讨论
相关主题
为啥大家都说刷题无用呢4sum o(n^2)超时
Leetcode的Substring with Concatenation of All Words超时。问一下OJ的Anagrams那道题
Given an int array and an int value. Find all pairs in arrLRU cache 问题
弱问一道G题LRU cache 超时
关于Hash_map怎么找一个数组里面,出现次数是偶数的数?
A家新鲜面经--都是经典题自己写了个graph的class但是不work 求指点
请教LeetCode的3Sum问个Java的HashSet.contains的问题
LeetCode 的 4 sum 问题 如何用hash table做呢?请问这道题如何做?Zero-one multiple
相关话题的讨论汇总
话题: integer话题: pair话题: count话题: target话题: sum