Chapter 5 Flashcards

1
Q

Each link of a linked list can store a data called an element.

A

Link

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Each link of a linked list contains a link to the next link

A

Next

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

A Linked List contains the connection link to the first link called First.

A

LinkedList

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

can be visualized as a chain of nodes, where every node points to the next node.

A

Linked list

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

• Item navigation is forward only.

A

Simple Linked List

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

• Items can be navigated forward and backward.

A

Doubly Linked List

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

• Last item contains link of the first element as next and the first element has a link to the last element as previous.

A

Circular Linked List

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

• Each link of a linked list can store a data called an element.

A

Link

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Each link of a linked list contains a link to the next link

A

Next

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Each link of a linked list contains a link to the previous link

A

Prev

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

A Linked List contains the connection link to the first link called First and to the last link called Last.

A

LinkedList

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Adds an element at the beginning of the list.

A

Insertion

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Deletes an element at the beginning of the list.

A

Deletion

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Adds an element at the end of the list.

A

Insert last

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

Deletes an element from the end of the list.

A

Delete last

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

Adds an element after an item of the list.

A

Insert After

17
Q

Deletes an element from the list using the key.

A

Delete

18
Q

Displays the complete list in a forward manner.

A

Display forward

19
Q

Displays the complete list in a backward manner.

A

Display backward

20
Q

a variation of Linked list in which the first element points to the last element and the last element points to the first element.

A

Circular Linked List

21
Q

the next pointer of the last node points to the first node

A

singly linked list

22
Q

the next pointer of the last node points to the first node and the previous pointer of the first node points to the last node making the circular in both directions.

A

Doubly linked list

23
Q

Inserts an element at the start of the list.

A

insert

24
Q

Deletes an element from the start of the list.

A

delete

25
Q

Displays the list.

A

display

26
Q

Adds an element at the beginning of the list.

A

Insertion

27
Q

Deletes an element at the beginning of the list.

A

Deletion

28
Q

Displays the complete list.

A

Display

29
Q

Searches an element using the given key.

A

Search

30
Q

Deletes an element using the given key.

A

Delete