You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For small 256 address subnets, a vector would be better (O(1) lookup and delete etc.). For larger networks (less likely use case) a HashMap might be better.
The current Map data structure, is O(log n) in most operations.
Migrate the internal router to a better data structure.
The text was updated successfully, but these errors were encountered:
For small 256 address subnets, a vector would be better (O(1) lookup and delete etc.). For larger networks (less likely use case) a HashMap might be better.
The current Map data structure, is O(log n) in most operations.
Migrate the internal router to a better data structure.
The text was updated successfully, but these errors were encountered: