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
The runtime could be improved by implementing an efficient spatial data structure. At the moment, we have implemented an sorted ArrayList with access time in O(logn) and additions/removals in O(n), but n (number of vehicles) is quite small per lane. Implementations using a NavigableMap doesn't help.
The text was updated successfully, but these errors were encountered:
The runtime could be improved by implementing an efficient spatial data structure. At the moment, we have implemented an sorted
ArrayList
with access time in O(logn) and additions/removals in O(n), butn
(number of vehicles) is quite small per lane. Implementations using aNavigableMap
doesn't help.The text was updated successfully, but these errors were encountered: