开发者

3rd way to find a duplicate

开发者 https://www.devze.com 2023-03-04 16:10 出处:网络
Two common ways to detect duplicates in an array: 1) sort first, time complexity O (n log n), space complexity O (1)

Two common ways to detect duplicates in an array:

1) sort first, time complexity O (n log n), space complexity O (1)

2) hash set, time complexity O (n), space complexity O (n)

Is there a 3rd way to detect a 开发者_开发知识库duplicate?

Please do not answer brute force.


Yet another option is the Bloom filter. Complexity O(n), space varies (almost always less than a hash), but there is a possibility of false positives. There is a complex relationship between the size of the data set, the size of the filter, and the number of false positives that you can expect.

Bloom filters are often used as quick "sanity checks" before doing a more expensive duplicate check.


Depends on the information.

If you know the range of the numbers, like 1-1000, you can use a bit array.

Lets say the range is a...b

Make a bit array with (b-a) bits. initialize them to 0.

Loop through the array, when you get to the number x , change the bit in place x-a to 1.

If there's a 1 there already, you have a duplicate.

time complexity: O(n)

space complexity: (b-a) bits


Another method to find duplicates provided an n element array contains elements from 0 to n-1. <Find Duplicates>

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号