A B D E F G H I L M O P R S T Z 

I

insert(int, int) - Method in class list.IntList
Insert a new entry anywhere in the list.
For example, with input parameters index = 3, data = 7, the list
[1, 4, 2, 6, 10]
should change to
[1, 4, 2, 7, 6, 10]
IntList - Class in list
Lab04
In this lab you will practice implementing classes, using APIs, and handling memory references.

You will implement a linked list for storing primitive int values.
IntList() - Constructor for class list.IntList
Initializes an empty list.
The size is zero, and the first entry is null.
IntListEntry - Class in list
Implements a single entry in an IntList
IntListEntry(int) - Constructor for class list.IntListEntry
Initializes a new list entry object with the specified data.
A B D E F G H I L M O P R S T Z