Baixe o aplicativo
educalingo
linked list

Significado de "linked list" no dicionário inglês

DICIONÁRIO

PRONÚNCIA DE LINKED LIST EM INGLÊS

linked list


CATEGORIA GRAMATICAL DE LINKED LIST

substantivo
adjetivo
verbo
advérbio
pronome
preposição
conjunção
determinante
exclamação
Linked list e um substantivo.
O nome ou substantivo é o tipo de palavras cujo significado determina a realidade. Os substantivos denominam todas as coisas: pessoas, objetos, sensações, sentimentos, etc.

O QUE SIGNIFICA LINKED LIST EM INGLÊS

Lista vinculada

Na ciência da computação, uma lista vinculada é uma estrutura de dados que consiste em um grupo de nós que juntos representam uma seqüência. Sob a forma mais simples, cada nó é composto de um dado e uma referência ao próximo nó na seqüência; Variantes mais complexas adicionam links adicionais. Esta estrutura permite uma inserção ou remoção eficiente de elementos de qualquer posição na seqüência. Uma lista vinculada cujos nós contém dois campos: um valor inteiro e um link para o próximo nó. O último nó está vinculado a um terminador usado para significar o final da lista. As listas vinculadas estão entre as estruturas de dados mais simples e mais comuns. Eles podem ser usados ​​para implementar vários outros tipos de dados abstratos comuns, incluindo listas, pilhas, filas, arrays associativos e expressões S, embora não seja incomum implementar as outras estruturas de dados diretamente sem usar uma lista como base de implementação. O principal benefício de uma lista vinculada em uma matriz convencional é que os elementos da lista podem ser facilmente inseridos ou removidos sem reatribuição ou reorganização de toda a estrutura porque os itens de dados não precisam ser armazenados contiguamente na memória ou no disco.

definição de linked list no dicionário inglês

A definição de lista vinculada no dicionário é uma lista na qual cada item contém dados e um ponteiro para um ou ambos os itens vizinhos, eliminando assim a necessidade de os itens de dados serem ordenados na memória.

PALAVRAS EM INGLÊS QUE COMEÇAM COMO LINKED LIST

linishing · link · link motion · link road · Link trainer · linkable · linkage · linkboy · linker · linking consonant · linking verb · linkman · linkmen · linkrot · links · linksland · linkster · linkup · linkwork · linky

PALAVRAS EM INGLÊS QUE TERMINAM COMO LINKED LIST

A list · A-list · bucket list · casualty list · check list · free list · guest list · honours list · long list · mailing list · price list · reading list · reserve list · shopping list · short list · stock list · waiting list · white list · wine list · wish list · word list

Sinônimos e antônimos de linked list no dicionário inglês de sinônimos

SINÔNIMOS

PALAVRAS EM INGLÊS RELACIONADAS COM «LINKED LIST»

linked list · reverse · linked · list · javascript · interview · questions · python · java · example · doubly · computer · science · data · structure · consisting · group · nodes · which · together · represent · sequence · basics · stanford · education · library · never · program · certain · lots · pointers · problems · nice · combination · algorithms · pointer · daring · fireball · recall · previous · post · have · three · wildly · disparate · time · scales · play · millions · billions · trillions · rounding · nearest · tutorial · cprogramming · learn · create · insert · remove · with · examples · linkedlist · platform · oracle · documentation · operations · perform · could ·

Tradutor on-line com a tradução de linked list em 25 línguas

TRADUTOR

TRADUÇÃO DE LINKED LIST

Conheça a tradução de linked list a 25 línguas com o nosso tradutor inglês multilíngue.

As traduções de linked list a outras línguas apresentadas nesta seção foram obtidas através da tradução automática estatística; onde a unidade essencial da tradução é a palavra «linked list» em inglês.
zh

Tradutor português - chinês

链表
1.325 milhões de falantes
es

Tradutor português - espanhol

lista enlazada
570 milhões de falantes
en

inglês

linked list
510 milhões de falantes
hi

Tradutor português - hindi

लिंक सूची
380 milhões de falantes
ar

Tradutor português - arabe

قائمة مرتبطة
280 milhões de falantes
ru

Tradutor português - russo

связанный список
278 milhões de falantes
pt

Tradutor português - português

lista ligada
270 milhões de falantes
bn

Tradutor português - bengali

যোজিত তালিকা
260 milhões de falantes
fr

Tradutor português - francês

liste chaînée
220 milhões de falantes
ms

Tradutor português - malaio

Senarai berkaitan
190 milhões de falantes
de

Tradutor português - alemão

verketteten Liste
180 milhões de falantes
ja

Tradutor português - japonês

リンクリスト
130 milhões de falantes
ko

Tradutor português - coreano

연결리스트
85 milhões de falantes
jv

Tradutor português - javanês

Dhaptar disambung
85 milhões de falantes
vi

Tradutor português - vietnamita

danh sách liên kết
80 milhões de falantes
ta

Tradutor português - tâmil

இணைக்கப்பட்ட பட்டியல்
75 milhões de falantes
mr

Tradutor português - marata

लिंक्ड लिस्ट
75 milhões de falantes
tr

Tradutor português - turco

bağlantılı liste
70 milhões de falantes
it

Tradutor português - italiano

lista collegata
65 milhões de falantes
pl

Tradutor português - polonês

powiązana lista
50 milhões de falantes
uk

Tradutor português - ucraniano

зв´язаний список
40 milhões de falantes
ro

Tradutor português - romeno

lista de legat
30 milhões de falantes
el

Tradutor português - grego

συνδεδεμένη λίστα
15 milhões de falantes
af

Tradutor português - africâner

gekoppel lys
14 milhões de falantes
sv

Tradutor português - sueco

länkad lista
10 milhões de falantes
no

Tradutor português - norueguês

lenket liste
5 milhões de falantes

Tendências de uso de linked list

TENDÊNCIAS

TENDÊNCIAS DE USO DO TERMO «LINKED LIST»

Principais tendências de pesquisa e usos comuns de linked list
Listagem das principais pesquisas realizadas pelos usuários para acessar o nosso dicionário inglês online e expressões mais usadas com a palavra «linked list».

Citações, bibliografia em inglês e atualidade sobre linked list

EXEMPLOS

10 LIVROS EM INGLÊS RELACIONADOS COM «LINKED LIST»

Descubra o uso de linked list na seguinte seleção bibliográfica. Livros relacionados com linked list e pequenos extratos deles para contextualizar o seu uso na literatura.
1
Introduction To Algorithms
21.2 Linked-list representation of disjoint sets A simple way to implement a disjoint-set data structure is to represent each set by a linked list. The first object in each linked list serves as its set's representative. Each object in the linked list ...
Thomas H Cormen, 2001
2
Pascal Plus Data Structures, Algorithms, and Advanced ...
The linked list that we implemented in Chapter 6 is characterized by a linear ( linelike) relationship between the elements: each element (except the first one) has a unique predecessor, and each element (except the last one) has a unique  ...
Nell B. Dale, Susan C. Lilly, 1995
3
C++ Plus Data Structures
Why, then, might we want to use a circular, rather than a linear, linked list? Circular lists are useful for applications that require access to both ends of the list. (The circular linked version of the queue in Chapter 5 is a good example of this ...
Nell Dale, 2011
4
A Laboratory Course in C++ Data Structures
A Laboratory Course in C++ Data Structures, Second Edition assumes that students are familiar with the following C++ constructs; built-in simple data types, stream I/O as provided in , stream I/O as provided in , control structures while, ...
Jim Robergé, James Roberge, Stefan Brandle, 2003
5
Data Structures And Files
Concept of data, Data types, Data objects, Structure, Abstract data type, (ADT) and study.
A.A.Puntambekar, 2008
6
Data Structures
Linked ListsConcepts of linked organization, singly linked list, Operations such as as Insertion, deletion, inversion, concatenation, Computation of length, traversal on linked list, Applications : Representation and manipulations of ...
A.A.Puntambekar N.A.Deshpande S.S.Sane, 2006
7
Guide to Fortran 2003 Programming
Linked lists have many uses in a wide variety of application areas; one example in science and engineering is the use of a linked list to represent a queue in a simulation program. Lists of values can be implemented in Fortran in more than one ...
Walter S. Brainerd, 2009
8
Object-Oriented Data Structures Using Java
Data Structures & Theory of Computation
Nell Dale, Daniel Joyce, Chip Weems, 2011
9
Through C to C++: A Complete Programming Course
Write a function to return the number of nodes in the linked list that was created in question 16. 18. Write a recursive function to display the contents of the linked list that was created in question 16. 19. Write a recursive function to search for a ...
Barry J. Holmes, 1997
10
Data Structures and Algorithms
the singly linked list. You can insert a new record to the list after any node (in the program we insert a new record after the first node but you can replace the first node by any other node), and delete any record in the doubly linked list (in the ...
‎2003

10 NOTÍCIAS NAS QUAIS SE INCLUI O TERMO «LINKED LIST»

Conheça de que se fala nos meios de comunicação nacionais e internacionais e como se utiliza o termo linked list no contexto das seguintes notícias.
1
How to use the compute shader with a per-pixel linked list.
How to use the compute shader with a per-pixel linked list. ... shader to load all fragments belongs to the current pixel, per-pixel linked list. «GameDev.net, jul 15»
2
Every Programmer Should Understand This
A linked list is probably the most basic data structure in computer science and is the main building block that other data structures consist of. «Pulse, jul 15»
3
Press Red : July 6th : Mario Gotze Linked With United Move
Still, the Star are respected enough to make the link one that we have to include in our players linked list. Having entertained the Metro at first, ... «Retro United, jul 15»
4
Summer transfer window: Players linked in June
Finally then, and a new name to add to the 'linked list', with the Daily Express linking Lille starlet Adama Traore with three Premier League ... «Manchester City FC, jun 15»
5
Boro transfer rumours: Week Five of the Boro summer linked list
It was getting busy on the links last week - including the return of a familiar face :: Will Boro make a signing in Week Five? Share; Share; Tweet ... «Gazette Live, jun 15»
6
Hash Table Element Lookup
I have a hash function that generates an index to place the resource in and it gets added to the linked list in that index. To retreive a resource I ... «GameDev.net, jun 15»
7
One thing we can learn from Circa: A broader way to think about …
The main branch for Spain, for example, was a Trello card with a linked list of every ongoing Circa story on Spain, a couple dozen of them in ... «Nieman Journalism Lab at Harvard, jun 15»
8
Coding Interviews
The cumulation of this process is a complete migration from “show me something you've built” to “reverse a linked list”. As we try and find ... «Pulse, jun 15»
9
Addressing Is The Secret Of Power8 CAPI
As a simple example, picture an otherwise simple linked list; each node of the list addresses – via an EA – the next node. Each one of those ... «The Platform, jun 15»
10
PAS will not work with chauvinists, says Hadi
During the elections, an ulama-linked list of candidates, said to have been endorsed by Hadi, was distributed to delegates. The pro-Hadi group ... «The Malaysian Insider, jun 15»
REFERÊNCIA
« EDUCALINGO. Linked list [on-line]. Disponível <https://educalingo.com/pt/dic-en/linked-list>. Jun 2026 ».
Baixe o aplicativo educalingo
PT