//You are given two lists. Write a method that checks for duplicate elements in the second list.
// test cases :
// listA: [1,2,3,4]
// listB: [3,6,8.5]
//
// invalidList: [1,2,3,3]
// hasDupliactes(listA, listB) -> true
//boolean
// list sorted?
// O(lenA * LenB)
// hashset
// sort A , sort B
// and do binary search
// O(logn)
// hashset
// set add List A into set , no duplicate in list A
// continue add ListB into set , if duplicate one , set will failed. return false
// O(len A + len B)
// use two LinkedHashSet
// Add list A into set 1
// Add list B into set 2
// Add element from set2 into set 1
import java.util.*;
import java.util.HashSet;
public class FindDuplicate {
public static void main(String[] args) {
Integer[] array1 = { 1, 2, 3, 4};
Integer[] array2 = {3, 6, 8, 5};
FindDuplicate finder = new FindDuplicate();
System.out.println(finder.checkDuplicate(array1, array2));
}
public boolean checkDuplicate(Integer[] array1, Integer[] array2) {
Set<Integer> set1 = new HashSet<Integer>(Arrays.asList(array1));
Set<Integer> set2 = new HashSet<Integer>(Arrays.asList(array2));
// if set2.size() > set1.size()
for (int element : set2) {
if (!set1.add(element)) {
return true;
}
}
return false;
}
// second solution
// int pointA // pointer
}
2016-06-17-亚马逊电面
最后编辑于 :
©著作权归作者所有,转载或内容合作请联系作者
【社区内容提示】社区部分内容疑似由AI辅助生成,浏览时请结合常识与多方信息审慎甄别。
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。
【社区内容提示】社区部分内容疑似由AI辅助生成,浏览时请结合常识与多方信息审慎甄别。
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。