Download presentation
Presentation is loading. Please wait.
Published byCuthbert Ward Modified over 5 years ago
2
Figure 4.1 a) A linked list of integers; b) insertion; c) deletion
3
Figure 4.2 A reference to an Integer object
4
Figure 4.3a-d a) Declaring reference variables; b) allocating an object; c) allocating another object, with the dereferenced object marked for garbage collection
5
Figure 4.3e-g e) allocating an object; f) assigning null to a reference variable; g) assigning a reference with a null value
6
Figure 4.4 The value of a parameter does not affect the argument’s value
7
Figure 4.5 A node
8
Figure 4.6 The result of linking two instances of IntegerNode
9
Figure 4.7 Using the Node constructor to initialize a data field and a link value
10
Figure 4.8 A head reference to a linked list
11
Figure 4.9 A lost node
12
Figure 4.10 The effect of the assignment curr = curr.getNext( )
13
Figure 4.11 Deleting a node from a linked list
14
Figure 4.12 Deleting the first node
15
Figure 4.13 Inserting a new node into a linked list
16
Figure 4.14 Inserting at the beginning of a linked list
17
Figure 4.15 Inserting at the end of a linked list
18
Figure 4.16 When prev references the last node and curr is null, insertion will be at the end of the linked list
19
Figure 4.17 When prev is null and curr references the first node, insertion or deletion will be at the beginning of the linked list
20
Figure 4.18 A reference-based implementation of the ADT list
21
Figure 4.19 A head reference as an argument
22
Figure 4.20 a) A sorted linked list; b) the assignment made for insertion at the beginning of the list
23
Figure 4.21a and 4.21b a) The initial call insert Recursive(head, newItem); b) the first recursive call
24
Figure 4.21c c) the second recursive call inserts at the beginning of the list that headNode references
25
Figure 4.22 A linked list with head and tail references
26
Figure 4.23 A circular linked list
27
Figure 4.24 A circular linked list with an external reference to the last node
28
Figure 4.25 A dummy head node
29
Figure 4.26 a) A dummy head node with global information; b) a head record with global information
30
Figure 4.27 A doubly linked list
31
Figure 4.28 a) A circular doubly linked list with a dummy head node; b) an empty list with a dummy head node
32
Figure 4.29 Reference changes for deletion
33
Figure 4.30 Reference changes for insertion
34
Figure 4.31a and 4.31b a) Inventory list node; b) wait list node
35
Figure 4.31c c) orthogonal structure for the inventory
36
Figure 4.32 Linked list for Self-Test Exercise 2, 3, and 7
37
Figure 4.33 Two circular linked lists
38
Figure 4.34 A sparse polynomial
39
Figure 4.35 a) An array-based implementation of the linked list in Figure 4-32; b) after inserting D in sorted order; c) after deleting B
Similar presentations
© 2024 SlidePlayer.com. Inc.
All rights reserved.