队列英文解释翻译、队列的近义词、反义词、例句
英语翻译:
alignment【计】 Q; queue; queueing
相关词条:
1.alignment 2.queue 3.waitingline例句:
- 在系统中等待处理的一组或一队列新信息,主调度程序对该队列及其它队列进行扫描,使之顺序进入处理状态。A queue of new messages(or a group) within a system that are awaiting processing. The main scheduling routine will scan them along with other queues and order them into processing in order.
- 一种排队方法,按照这种方法,下一个要取出的项是最近进入该队列的项。A queuing technique in which the next item to be retrieved is the item most recently placed in the queue.
分词翻译:
列的英语翻译:
arrange; kind; line; list; row; tier; various【计】 COL; column
【医】 series
网络扩展解释
队列
队列(duì liè)是一种数据结构,它基于先进先出(First-In-First-Out,简称FIFO)的原则,常在计算机科学中使用。
英语解释翻译
队列的英语拼写为queue,其定义为一种容纳元素的线性数据结构,遵循FIFO原则。
英文读音
queue的英文读音为/kjuː/。
英文用法
在计算机科学中,队列被广泛应用。队列可以模拟现实生活中的排队场景,如在操作系统中,进程可以根据一定的优先级插入对应的队列中等待执行。在Web开发中,队列被用来处理异步任务,如处理消息队列。
英文例句
Below is an example of a queue implemented in Python.
下面是Python中实现队列的一个例子。
queue = []
queue.append(1)
queue.append(2)
queue.append(3)
print(queue)
queue.pop(0)
print(queue)
英文近义词
与队列相关的近义词包括line和sequence。
英文反义词
队列的反义词为stack,栈是一种先进后出(Last-In-First-Out,简称LIFO)数据结构。
英文单词常用度
队列在计算机科学中应用广泛,因此在英语使用频率较高。在TOEFL、GRE等英语考试中也常见到这个单词。