empty queue - definição. O que é empty queue. Significado, conceito
Diclib.com
Dicionário ChatGPT
Digite uma palavra ou frase em qualquer idioma 👆
Idioma:

Tradução e análise de palavras por inteligência artificial ChatGPT

Nesta página você pode obter uma análise detalhada de uma palavra ou frase, produzida usando a melhor tecnologia de inteligência artificial até o momento:

  • como a palavra é usada
  • frequência de uso
  • é usado com mais frequência na fala oral ou escrita
  • opções de tradução de palavras
  • exemplos de uso (várias frases com tradução)
  • etimologia

O que (quem) é empty queue - definição

ABSTRACT DATA TYPE
Bounded queue; Queue (data structure); Real-time queue; Amortized queue

Client–queue–client         
Client-Queue-Client; Client-queue-client
A client–queue–client or passive queue system is a client–server computer network in which the server is a data queue for the clients. Instead of communicating with each other directly, clients exchange data with one another by storing it in a repository (the queue) on a server.
Empty sella syndrome         
  • MRI]]
  • Patent ductus arteriosus
  • [[Pituitary gland]]
ENDOCRINE DISEASE
Empty Sella Syndrome; Empty sella
Empty sella syndrome is the condition when the pituitary gland shrinks or becomes flattened, filling the sella turcica with cerebrospinal fluid instead of the normal pituitary. It can be discovered as part of the diagnostic workup of pituitary disorders, or as an incidental finding when imaging the brain.
Manufacturer's empty weight         
WEIGHT OF THE AIRCRAFT "AS BUILT"
Basic aircraft empty weight; Standard empty weight; Manufacturer's Empty Weight; Manufacturer's Weight Empty
In aviation, manufacturer's empty weight (MEW) (also known as manufacturer's weight empty (MWE)) is the weight of the aircraft "as built" and includes the weight of the structure, power plant, furnishings, installations, systems, and other equipment that are considered an integral part of an aircraft before additional operator items are added for operation.

Wikipédia

Queue (abstract data type)

In computer science, a queue is a collection of entities that are maintained in a sequence and can be modified by the addition of entities at one end of the sequence and the removal of entities from the other end of the sequence. By convention, the end of the sequence at which elements are added is called the back, tail, or rear of the queue, and the end at which elements are removed is called the head or front of the queue, analogously to the words used when people line up to wait for goods or services.

The operation of adding an element to the rear of the queue is known as enqueue, and the operation of removing an element from the front is known as dequeue. Other operations may also be allowed, often including a peek or front operation that returns the value of the next element to be dequeued without dequeuing it.

The operations of a queue make it a first-in-first-out (FIFO) data structure. In a FIFO data structure, the first element added to the queue will be the first one to be removed. This is equivalent to the requirement that once a new element is added, all elements that were added before have to be removed before the new element can be removed. A queue is an example of a linear data structure, or more abstractly a sequential collection. Queues are common in computer programs, where they are implemented as data structures coupled with access routines, as an abstract data structure or in object-oriented languages as classes. Common implementations are circular buffers and linked lists.

Queues provide services in computer science, transport, and operations research where various entities such as data, objects, persons, or events are stored and held to be processed later. In these contexts, the queue performs the function of a buffer. Another usage of queues is in the implementation of breadth-first search.