Chapter 3 ADTs unsorted List and Sorted List. 3-2 List Definitions Linear relationship Each element...

Post on 30-Mar-2015

225 views 1 download

Tags:

Transcript of Chapter 3 ADTs unsorted List and Sorted List. 3-2 List Definitions Linear relationship Each element...

Chapter 3

ADTs unsorted List and Sorted List

3-2

List Definitions

Linear relationship Each element except the first has a unique predecessor, and each element except the last has a unique successor.

Length The number of items in a list; the length can vary over time.

3-3

List Definitions

Unsorted list A list in which data items are placed in no particular order; the only relationship between data elements is the list predecessor and successor relationships.

Sorted list A list that is sorted by the value in the key; there is a semantic relationship among the keys of the items in the list.

Key The attributes that are used to determine the logical order of the list.

3-4

Assumptions for All our Lists

1. Our lists are composed of unique elements.

2. When sorted, our lists are sorted from the smallest to largest key value.

3. We use the “by copy” approach.

4. We use the programming “by contract” approach.

Development of an Unsorted List ADT:

UnsortedStringList

3-6

Unsorted List ADT Specification

3-7

Constructors

3-8

Observers

3-9

Transformers

3-10

Iterators

3-11

Application Level

3-12

List Design Terminology

3-13

Instance Variables of Unsorted List ADT

3-14

Beginning of Unsorted StringList Class:

3-15

Constructors

3-16

Definitions

• Signature The distinguishing features of a method heading. The combination of a method name with the number and type(s) of its parameters in their given order.

• Overloading The repeated use of a method name with a different signature.

3-17

Simple Observers

public boolean isFull ( )

// Returns whether this lis is full

{

return (list.length == numItems);

}

3-18

isThere Operation

3-19

Retrieving an Item in an Unsorted List

3-20

Retrieving an Item in an Unsorted List

3-21

3-22

insert Operation

3-23

Deleting Bobby (move up)

• public void delete (String item)• // Deletes the element that matches item from this list• {• int location = 0;• while (item.compareTo(list[location]) != 0)• location++;• If(isThere(item)• {• For( int I = location; i,<numItm-1;i++)• list[i] = list[i+1];• }• }

3-24

Deleting Bobby (swap)—more efficient

• public void delete (String item)• // Deletes the element that matches item from this list• {• int location = 0;• while (item.compareTo(list[location]) != 0)• location++;• list[location] = list[numItems - 1];• numItems--;• }

3-25

3-26

UML Diagram of UnsortedStringList

3-27

Reuse Operations

Ways we could reuse the code of the Unsorted List ADT to create the code for the Sorted List ADT:

1. Cut and Paste—”cut and paste” the code that we are able to reuse into the new file.

2. Direct Inheritance—have the Sorted List ADT inherit methods from the Unsorted List ADT.

3. Abstract Classes—resolve the deficiencies of both of the previous approaches.

3-28

Steps for Using Abstract Class Approach

1. We first create an abstract list class.1. Its concrete methods provide the operations that

our two list ADTs share in common.

2. Its abstract methods provide the operations that are not shared.

2. Then create two concrete classes that extend the abstract list class.1. One that implements an unsorted list

2. The other that implements a sorted list

3-29

The Abstract Class

• Please click on the following link Programs/C03P165.jpg to view the appropriate program.

3-30

Extending the Abstract Class

• Please click on the following link Programs/C03P166.jpg to view the appropriate program.

3-31

UML Diagram

Abstract Data Type Sorted List

3-33

Sorted List ADT Specification (partial)

3-34

Constructors

3-35

Redefined insert

3-36

Redefined Delete

3-37

insert Operation

1. Find the place where the new element begins.

2. Create space for the new element.

3. Put the new element on the list.

3-38

Original List

3-39

Insert Becca

3-40

Result

3-41

insert (item)

3-42

3-43

delete (item)

3-44

3-45

Binary Search Algorithm

3-46

isThere (item): returns boolean

3-47

3-48

3-49

3-50

3-51

3-52

UML Diagram

• Please click on the following link Programs/C03P180.jpg to view the appropriate program.

3-53

Comparison of Algorithms

Big-O Notation A notation that expresses computing time (complexity) as the term in a function that increases most rapidly relative to the size of a problem

Iff(N) = N4 + 100N2 + 10N + 50

then f(N) is 0(N4). N represents the size of the problem.

3-54

Comparison of Rates of Growth

3-55

Comparison of Linear and Binary Searches

3-56

Big-O Comparison of List Operations

3-57

Generic ADTsSo far…• An unsorted list of strings• An unsorted list of strings that extended

String List• A sorted list of strings that extended

String ListNext—• Lists of generic dataGeneric Data Type A type for which the

operations are defined but the types of the items being manipulated are not

3-58

The Listable Interface

3-59

A ListCircle Class

3-60

A Generic Abstract List Class

• Please click on the following link Programs/C03P196.jpg to view the appropriate program.

3-61

3-62

A Generic Sorted List ADT

• Please click on the following link Programs/C03P200.jpg to view the appropriate program.

3-63

UML Diagrams for our List Framework

3-64

A Listable Class

• Please click on the following link Programs/C03P204.jpg to view the appropriate program.

3-65

Using the Generic List

To Create a sorted list of strings use either of its constructors:

SortedList list1 = new SortedList();SortedList list2 = new SortedList (size);

Declare at least one object of class ListStringListString aString;

Instantiate ListString objects and place them on the list.

aString = new ListString(“Amy”);list.insert(astring)