Chapter 10 Flashcards
Identifier
a unique name applied to an item of data.
Record (data type)
a composite data type comprising
several related items that may be of different data
types.
Composite data type
a data type constructed using
several of the basic data types available in a particular
programming language.
Array
a data structure containing several elements of
the same data type.
Index (array)
a numerical indicator of an item of
data’s position in an array.
Linear search
a method of searching in which each
element of an array is checked in order.
Bubble sort
a method of sorting data in an array into
alphabetical or numerical order by comparing adjacent
items and swapping them if they are in the wrong order.
File
collection of data stored by a computer program to be used again.
Linked Lists
a list containing several items in which each item in the list points to the next item in the list.
Abstract Data Type (ADT)
a collection of data and a set of operations on that data.