Download the app
educalingo
Search

Meaning of "linked list" in the English dictionary

Dictionary
DICTIONARY
section

PRONUNCIATION OF LINKED LIST

linked list play
facebooktwitterpinterestwhatsapp

GRAMMATICAL CATEGORY OF LINKED LIST

noun
adjective
verb
adverb
pronoun
preposition
conjunction
determiner
exclamation
Linked list is a noun.
A noun is a type of word the meaning of which determines reality. Nouns provide the names for all things: people, objects, sensations, feelings, etc.

WHAT DOES LINKED LIST MEAN IN ENGLISH?

Linked list

In computer science, a linked list is a data structure consisting of a group of nodes which together represent a sequence. Under the simplest form, each node is composed of a data and a reference to the next node in the sequence; more complex variants add additional links. This structure allows for efficient insertion or removal of elements from any position in the sequence. A linked list whose nodes contain two fields: an integer value and a link to the next node. The last node is linked to a terminator used to signify the end of the list. Linked lists are among the simplest and most common data structures. They can be used to implement several other common abstract data types, including lists, stacks, queues, associative arrays, and S-expressions, though it is not uncommon to implement the other data structures directly without using a list as the basis of implementation. The principal benefit of a linked list over a conventional array is that the list elements can easily be inserted or removed without reallocation or reorganization of the entire structure because the data items need not be stored contiguously in memory or on disk.

Definition of linked list in the English dictionary

The definition of linked list in the dictionary is a list in which each item contains both data and a pointer to one or both neighbouring items, thus eliminating the need for the data items to be ordered in memory.

WORDS THAT BEGIN LIKE 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

WORDS THAT END LIKE 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

Synonyms and antonyms of linked list in the English dictionary of synonyms

SYNONYMS

Translation of «linked list» into 25 languages

TRANSLATOR
online translator

TRANSLATION OF LINKED LIST

Find out the translation of linked list to 25 languages with our English multilingual translator.
The translations of linked list from English to other languages presented in this section have been obtained through automatic statistical translation; where the essential translation unit is the word «linked list» in English.

Translator English - Chinese

链表
1,325 millions of speakers

Translator English - Spanish

lista enlazada
570 millions of speakers

English

linked list
510 millions of speakers

Translator English - Hindi

लिंक सूची
380 millions of speakers
ar

Translator English - Arabic

قائمة مرتبطة
280 millions of speakers

Translator English - Russian

связанный список
278 millions of speakers

Translator English - Portuguese

lista ligada
270 millions of speakers

Translator English - Bengali

যোজিত তালিকা
260 millions of speakers

Translator English - French

liste chaînée
220 millions of speakers

Translator English - Malay

Senarai berkaitan
190 millions of speakers

Translator English - German

verketteten Liste
180 millions of speakers

Translator English - Japanese

リンクリスト
130 millions of speakers

Translator English - Korean

연결리스트
85 millions of speakers

Translator English - Javanese

Dhaptar disambung
85 millions of speakers
vi

Translator English - Vietnamese

danh sách liên kết
80 millions of speakers

Translator English - Tamil

இணைக்கப்பட்ட பட்டியல்
75 millions of speakers

Translator English - Marathi

लिंक्ड लिस्ट
75 millions of speakers

Translator English - Turkish

bağlantılı liste
70 millions of speakers

Translator English - Italian

lista collegata
65 millions of speakers

Translator English - Polish

powiązana lista
50 millions of speakers

Translator English - Ukrainian

зв´язаний список
40 millions of speakers

Translator English - Romanian

lista de legat
30 millions of speakers
el

Translator English - Greek

συνδεδεμένη λίστα
15 millions of speakers
af

Translator English - Afrikaans

gekoppel lys
14 millions of speakers
sv

Translator English - Swedish

länkad lista
10 millions of speakers
no

Translator English - Norwegian

lenket liste
5 millions of speakers

Trends of use of linked list

TRENDS

TENDENCIES OF USE OF THE TERM «LINKED LIST»

The term «linked list» is regularly used and occupies the 90.097 position in our list of most widely used terms in the English dictionary.
0
100%
FREQUENCY
Regularly used
58
/100
The map shown above gives the frequency of use of the term «linked list» in the different countries.
Principal search tendencies and common uses of linked list
List of principal searches undertaken by users to access our English online dictionary and most widely used expressions with the word «linked list».

FREQUENCY OF USE OF THE TERM «LINKED LIST» OVER TIME

The graph expresses the annual evolution of the frequency of use of the word «linked list» during the past 500 years. Its implementation is based on analysing how often the term «linked list» appears in digitalised printed sources in English between the year 1500 and the present day.

Examples of use in the English literature, quotes and news about linked list

EXAMPLES

10 ENGLISH BOOKS RELATING TO «LINKED LIST»

Discover the use of linked list in the following bibliographical selection. Books relating to linked list and brief extracts from same to provide context of its use in English literature.
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 NEWS ITEMS WHICH INCLUDE THE TERM «LINKED LIST»

Find out what the national and international press are talking about and how the term linked list is used in the context of the following news items.
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»

REFERENCE
« EDUCALINGO. Linked list [online]. Available <https://educalingo.com/en/dic-en/linked-list>. Apr 2024 ».
Download the educalingo app
en
English dictionary
Discover all that is hidden in the words on
index
a b c d e f g h i j k l m n o p q r s t u v w x y z