中英互译
linked list
美 /lɪŋkt lɪst/
基本释义
- 链表:一种简单的线性数据结构,每个节点都包含指向列表中下一个(有时也包括前一个)节点的指针,使得可以从任何起始点沿着至少一个方向遍历该结构。
双语例句
- One of the standard ways is to use what's called a linked list.其中一个标准的方法是使用所谓的链表。
- This linked list is called a PTE chain.这个链表叫做pte链。
- Design choices in a concurrent, singly linked list.并发单向链表的设计方法。
网络短语
- doubly linked list双向链表;双向链结串列;串列;结串列
- single linked list单向链结串列;单向链表
- circular linked list循环链表;串列;环狀串列
- double linked list双向链表;双链表;双链结串列;链表
- singly 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 (in other words, a link) to the next node in the sequence; more complex variants add additional links.