Home
Explore
Exams
Search for anything
Search for anything
Login
Get started
Home
Doubly Linked Lists
Studied by 0 people
0.0
(0)
Add a rating
Learn
A personalized and smart learning plan
Practice Test
Take a test on your terms and definitions
Spaced Repetition
Scientifically backed study method
Matching Game
How quick can you match all your cards?
Flashcards
Study terms and definitions
1 / 9
There's no tags or description
Looks like no one added any tags here yet for you.
10 Terms
View all (10)
Star these 10
1
Linked List
A sequence of nodes linked together where each node contains data and a reference to the next node.
New cards
2
Node
An element of a linked list that contains data and references to other nodes.
New cards
3
Head
The first node in a linked list that provides a reference to the start of the list.
New cards
4
Doubly Linked List
A type of linked list where each node contains references to both the next and previous nodes.
New cards
5
Tail
The last node in a linked list that indicates the end of the list.
New cards
6
Traversal
The process of navigating through the nodes of a linked list.
New cards
7
Previous Link
A reference in a doubly linked list that points to the node preceding the current node.
New cards
8
Next Link
A reference in a linked list that points to the node following the current node.
New cards
9
Inserting a Node
Adding a new node to the linked list at a specific position (beginning, end, or middle).
New cards
10
Deleting a Node
Removing a node from a linked list and updating the references of surrounding nodes.
New cards