Skip to content
Advertisement

Efficiently detect overlapping networks

I know how to detect overlapping networks. There are two ways to do this: by using netaddr’s “IPNetwork in IPNetwork” or ipaddress’s “overlaps” method. The question is how to find overlapping networks in array in most efficient way.

At the moment, I use this code:

JavaScript

It does the job, but uses many iterations (e.g. for 8 entries there are 7+6+5+… = 28 comparisons) and I’m looking for a more efficient way.

Advertisement

Answer

This will handle all of your cases, but it may not find EVERY duplicate, e.g. given (a, a', a'', a''', b) it will not show that (a''' overlaps a'). If you’re really interested in the primary supersets, then this code can be simplified

JavaScript
User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement