[LeetCode] 170. Two Sum III - Data structure design
Design and implement a TwoSum class. It should support the following operations: add and find.
add - Add the number to an internal data structure.find - Find if there exists any pair of numbers which sum is equal to the value.
Example 1:
add(1); add(3); add(5);
find(4) -> true
find(7) -> false
Example 2:
add(3); add(1); add(2);
find(3) -> true
find(6) -> false
Solution
class TwoSum {
Map map;
public TwoSum() {
map = new HashMap<>();
}
public void add(int number) {
map.put(number, map.getOrDefault(number, 0)+1);
}
public boolean find(int value) {
for (Map.Entry entry: map.entrySet()) {
int i = entry.getKey();
int j = value-i;
if ((i == j && entry.getValue() >= 2) ||
(i != j && map.containsKey(j))) {
return true;
}
}
return false;
}
}
Two HashSet -- TLE
class TwoSum {
Set nums;
Set sums;
/** Initialize your data structure here. */
public TwoSum() {
nums = new HashSet<>();
sums = new HashSet<>();
}
/** Add the number to an internal data structure.. */
public void add(int number) {
Iterator iterator = nums.iterator();
while (iterator.hasNext()) {
sums.add(iterator.next()+number);
}
nums.add(number);
}
/** Find if there exists any pair of numbers which sum is equal to the value. */
public boolean find(int value) {
return sums.contains(value);
}
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
java에서vector와hashtable 작업 실례 공유모두가 알다시피 자바에서vector와hashtable는 라인이 안전하다. 주로 자바가 둘에 대한 조작에synchronized, 즉 자물쇠를 달았다.따라서vector와hashtable에서의 작업은 문제가 발생하지 않습...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.