|
|
|
|
|
by nbingham
651 days ago
|
|
I tested two C++ implementations of Calendar Queues again the standard library priority_queue. The first implementation uses a deque as a backing container and then fills the calendar with linked lists. The second implementation just uses vectors in the calendar with no backing container. The calendar queues have an interesting failure mode. If you are randomly inserting elements with a priority that is less than "now", and then pop some number of elements, and doing this repeatedly, then the front of the calendar empties out. As a result, the random insertions create a single value in the front of the calendar, then there are many many days that are empty after that. So subsequent pops will always have to search a lot of days in the calendar. So, these calendar queues are only fast if you keep track of "now" and only insert events after "now". https://gist.github.com/nbingham1/611d37fce31334a1520213ce5d... seed 1725545662
priority_queue 0.644354
calendar_queue 0.215860
calendar_queue_vector 0.405788 seed 1725545667
priority_queue 0.572672
calendar_queue 0.196812
calendar_queue_vector 0.392303 seed 1725545672
priority_queue 0.622041
calendar_queue 0.241419
calendar_queue_vector 0.413713 seed 1725545676
priority_queue 0.590372
calendar_queue 0.204428
calendar_queue_vector 0.386992 |
|