下载应用程式
educalingo
linked list

在"英语"词典里linked list}的意思

词典

英语中LINKED LIST的发音

linked list


LINKED LIST的语法类别

noun
形容词
动词
副词
代词
介词
连词
限定词
感叹词

LINKED LIST在英语中的意思是什么?

链接列表

在计算机科学中,链表是由一组代表序列的节点组成的数据结构。 在最简单的形式下,每个节点由数据和序列中下一个节点的引用组成; 更复杂的变体添加额外的链接。 这种结构允许从序列中的任何位置有效地插入或移除元件。 链接列表,其节点包含两个字段:整数值和到下一个节点的链接。 最后一个节点链接到用于表示列表结尾的终结符。 链接列表是最简单和最常见的数据结构之一。 它们可以用于实现其他几种常见的抽象数据类型,包括列表,堆栈,队列,关联数组和S表达式,尽管直接实现其他数据结构并不常见,但不使用列表作为实现的基础。 与传统阵列相比,链表的主要优点是可以容易地插入或删除列表元素,而无需重新分配或重组整个结构,因为数据项不需要连续存储在内存或磁盘上。

在英语 词典里linked list的定义

字典中链接列表的定义是一个列表,其中每个项目既包含数据又包含指向一个或两个相邻项目的指针,因此不需要在存储器中排序数据项目。

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

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

英语近义词词典里linked list的近义词和反义词

近义词

«linked list»的25种语言翻译

翻译者

LINKED LIST的翻译

通过我们的英语多语言翻译器,找到linked list25种语言翻译

该章节所呈现的将linked list由 英语向其他语言的翻译是通过自动统计翻译获得的;在英语中基本的翻译单位是单词«linked list»。
zh

翻译者英语 - 中文

链表
1,325 数百万发言者
es

翻译者英语 - 西班牙语

lista enlazada
570 数百万发言者
en

英语

linked list
510 数百万发言者
hi

翻译者英语 - 印地语

लिंक सूची
380 数百万发言者
ar

翻译者英语 - 阿拉伯语

قائمة مرتبطة
280 数百万发言者
ru

翻译者英语 - 俄语

связанный список
278 数百万发言者
pt

翻译者英语 - 葡萄牙语

lista ligada
270 数百万发言者
bn

翻译者英语 - 孟加拉语

যোজিত তালিকা
260 数百万发言者
fr

翻译者英语 - 法语

liste chaînée
220 数百万发言者
ms

翻译者英语 - 马来语

Senarai berkaitan
190 数百万发言者
de

翻译者英语 - 德语

verketteten Liste
180 数百万发言者
ja

翻译者英语 - 日语

リンクリスト
130 数百万发言者
ko

翻译者英语 - 韩语

연결리스트
85 数百万发言者
jv

翻译者英语 - 印尼爪哇语

Dhaptar disambung
85 数百万发言者
vi

翻译者英语 - 越南语

danh sách liên kết
80 数百万发言者
ta

翻译者英语 - 泰米尔语

இணைக்கப்பட்ட பட்டியல்
75 数百万发言者
mr

翻译者英语 - 马拉地语

लिंक्ड लिस्ट
75 数百万发言者
tr

翻译者英语 - 土耳其语

bağlantılı liste
70 数百万发言者
it

翻译者英语 - 意大利语

lista collegata
65 数百万发言者
pl

翻译者英语 - 波兰语

powiązana lista
50 数百万发言者
uk

翻译者英语 - 乌克兰语

зв´язаний список
40 数百万发言者
ro

翻译者英语 - 罗马尼亚语

lista de legat
30 数百万发言者
el

翻译者英语 - 希腊语

συνδεδεμένη λίστα
15 数百万发言者
af

翻译者英语 - 布尔语(南非荷兰语)

gekoppel lys
14 数百万发言者
sv

翻译者英语 - 瑞典语

länkad lista
10 数百万发言者
no

翻译者英语 - 挪威语

lenket liste
5 数百万发言者

linked list的使用趋势

趋势

词语 «LINKED LIST»的使用趋势

linked list的主要搜索趋势和常见用法
用户为查找我们的英语在线词典以及单词«linked list»的最常用表达而进行的主要搜索的列表。

linked list的英语文献、引用和新闻中的使用范例

示例

«LINKED LIST»相关的英语书籍

在以下的参考文献中发现linked list的用法。与linked list相关的书籍以及同一来源的简短摘要提供其在 英语文献中的使用情境。
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

包含词语«LINKED LIST»的新条目

找出国内和国际出版社所讨论的内容,以及词语linked list在以下新条目的上下文中是如何使用的。
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, 七月 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, 七月 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, 七月 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, 六月 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, 六月 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, 六月 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, 六月 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, 六月 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, 六月 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, 六月 15»
参考文献
« EDUCALINGO. Linked list [在线]. 可用 <https://educalingo.com/zh/dic-en/linked-list>. 六月 2024 ».
下载educalingo应用
ZH