累计查询 0.00 亿次

priority queue

  • 优先队列:一种数据结构,其中每个元素都有一个优先级,高优先级的元素先被处理。

双语例句

  1. You create a priority queue with these set of commands
    使用下面的命令创建一个优先级队列
  2. However, violating the spirit of the priority queue is necessary in this situation.
    然而,在这种情况下,必须违反一下优先级队列的设计思想。
  3. The thread scheduler must dispatch from the head of the highest-priority queue that is not empty.
    线程调度程序必须从非空的最高优先级队列的头部开始调度。

网络短语

  • Priority queue implementations
    实现优先队列;完成优先队列
  • monotone priority queue
    单调优先队列
  • max priority queue
    对于最大优先队列
  • Strict Priority Queue
    对最高优先级对列;级队列
  • Dynamic Priority Queue
    动态优先队列;级排队;动态优先级排队

英英释义

  • In computer science, a priority queue is an abstract data type which is like a regular queue or stack data structure, but where additionally each element has a "priority" associated with it. In a priority queue, an element with high priority is served before an element with low priority.