Chapter 14 Flashcards

You may prefer our related Brainscape-certified flashcards:
1
Q

association list

A

An unordered collection in which each value is associated with a unique key. (566)

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

collection

A

A group of data elements that can be treated as one thing. (535)

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

dictionary

A

An unordered collection in which each value is associated with a unique key. (566)

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

hashing

A

A method by which the position of an item in a collection is related to the item’s content and can be determined in constant time. (564)

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

iterator

A

An object that allows clients to navigate a collection by tracking a current position indicator. Basic operations are visiting the next element, testing for the presence of a next element, and removing the element just visited. (544)

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

keyed list

A

An unordered collection in which each value is associated with a unique key. (566)

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

list

A

An object that contains a sequence of elements that are ordered by an integer index position. (540)

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

map

A

An unordered collection in which each value is associated with a unique key. (566)

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

queue

A

A collection that supports first-in first-out processing of elements. (560)

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

set

A

An unordered collection of unique items. (563)

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

stack

A

A linear data structure in which elements are accessed at only one end. (555)

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

table

A

An unordered collection in which each value is associated with a unique key. (566)

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

type parameter

A

A symbol used to specify the element type in a generic collection when a variable is declared or an object is instantiated. (541)

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

type variable

A

A symbol used to specify the element type in the method signatures of a generic collection. (541)

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

wrapper class

A

A class that allows storage of primitive data types in a list. (543)

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