Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我被要求用 Java 为单个服务器系统编写程序,其中到达率是连续分布的。我被要求使用优先级队列来做到这一点。但我不明白它的必要性。普通的 FCFS 队列不够用。我该怎么做?
在离散事件模拟中,事件通常需要按时间戳顺序(虚拟时间顺序)处理,而不是按到达顺序处理。优先级队列用于将事件保持在时间戳顺序中。