1 Nell Dale Lecture 3 ADTs Unsorted List and Sorted List Slides by Sylvia Sorkin, Community College of Baltimore County - Essex Campus Modified by Reneta.

Slides:



Advertisements
Similar presentations
Sorted Lists CS Data Structures Sections 4.1, 4.2 & 4.3.
Advertisements

Alan YorinksLecture 7 1 • Tonight we will look at:: • List ADT • Unsorted List • Sequential Search • Selection Sort • Sorted List • Binary Search.
Computer Science and Software Engineering University of Wisconsin - Platteville 5. LinkedList Yan Shi CS/SE 2630 Lecture Notes.
Chapter 3 ADT Unsorted List. List Definitions Linear relationship Each element except the first has a unique predecessor, and Each element except the.
C++ Plus Data Structures ADTs Unsorted List and Sorted List
1 Nell Dale Chapter 9 Trees Plus Modified from the slides by Sylvia Sorkin, Community College of Baltimore County - Essex Campus C++ Plus Data Structures.
Unsorted Lists CS 308 – Data Structures. What is a list? A list is a homogeneous collection of elements. Linear relationship between elements: (1) Each.
1 C++ Plus Data Structures Nell Dale Chapter 1 Software Engineering Principles.
Chapter 4 ADT Sorted List.
Sorted Lists CS Data Structures. Sorted List Specification (partial) InsertItem (ItemType item) Function: Adds item to list Preconditions: (1) List.
1 C++ Plus Data Structures Nell Dale Chapter 10 Sorting and Searching Algorithms Slides by Sylvia Sorkin, Community College of Baltimore County - Essex.
1 Nell Dale Chapter 3 ADTs Unsorted List and Sorted List Slides by Sylvia Sorkin, Community College of Baltimore County - Essex Campus C++ Plus Data Structures.
1 C++ Plus Data Structures Nell Dale Queues ADTs Stack and Queue Slides by Sylvia Sorkin, Community College of Baltimore County - Essex Campus Modified.
C++ Plus Data Structures
1 C++ Plus Data Structures Nell Dale Chapter 2 Data Design and Implementation Slides by Sylvia Sorkin, Community College of Baltimore County - Essex Campus.
1 Chapter 6 Object-Oriented Software Development.
5 Linked Structures. 2 Definition of Stack Logical (or ADT) level: A stack is an ordered group of homogeneous items (elements), in which the removal and.
1 Chapter 6 Lists Plus. ADT Sorted List Operations Transformers n MakeEmpty n InsertItem n DeleteItem Observers n IsFull n LengthIs n RetrieveItem Iterators.
1 Nell Dale Chapter 6 Lists Plus Slides by Sylvia Sorkin, Community College of Baltimore County - Essex Campus C++ Plus Data Structures.
Dynamic Structures & Arrays.
1 Fall Chapter 4 ADT Sorted List. 2 Goals Describe the Abstract Data Type Sorted List from three perspectives Implement the following Sorted List.
Chapter 4 ADT Sorted List.
Data Structures and Algorithms What The Course Is About Data structures is concerned with the representation and manipulation of data. All programs manipulate.
1 Nell Dale Chapter 6 Lists Plus Slides by Sylvia Sorkin, Community College of Baltimore County - Essex Campus C++ Plus Data Structures.
1 Applied Arrays: Lists and Strings. 2 Chapter 13 Topics  Meaning of a List  Insertion and Deletion of List Elements  Selection Sort of List Elements.
1 Nell Dale Chapter 9 Trees Plus Slides by Sylvia Sorkin, Community College of Baltimore County - Essex Campus C++ Plus Data Structures.
Chapter 3 ADT Unsorted List. Lecture 7 List Definitions Linear relationship Each element except the first has a unique predecessor, and Each element.
1 C++ Plus Data Structures Nell Dale Chapter 7 Programming with Recursion Slides by Sylvia Sorkin, Community College of Baltimore County - Essex Campus.
What is a Stack? n Logical (or ADT) level: A stack is an ordered group of homogeneous items in which the removal and addition of items can take place only.
Linked List. List Definitions Linear relationship Each element except the first has a unique predecessor, and each element except the last has a unique.
1 C++ Plus Data Structures Nell Dale Chapter 4 ADTs Stack and Queue Slides by Sylvia Sorkin, Community College of Baltimore County - Essex Campus.
Chapter 4 ADT Sorted List. 2 Goals Describe the Abstract Data Type Sorted List from three perspectives Implement the following Sorted List operations.
1 Chapter 16-1 Linked Structures Dale/Weems. 2 Chapter 16 Topics l Meaning of a Linked List l Meaning of a Dynamic Linked List l Traversal, Insertion.
Copyright 2004 Scott/Jones Publishing Alternate Version of STARTING OUT WITH C++ 4 th Edition Chapter 9 Searching Arrays.
C++ Programming: From Problem Analysis to Program Design, Second Edition Chapter 19: Searching and Sorting.
1 C++ Plus Data Structures Nell Dale Chapter 4 ADTs Stack and Queue Modified from the slides by Sylvia Sorkin, Community College of Baltimore County -
CPSC 252 Concrete Data Types Page 1 Overview of Concrete Data Types There are two kinds of data types: Simple (or atomic) – represents a single data item.
3 ADT Unsorted List. List Definitions Linear relationship Each element except the first has a unique predecessor, and each element except the last has.
1 Chapter 16 Linked Structures Dale/Weems. 2 Chapter 16 Topics l Meaning of a Linked List l Meaning of a Dynamic Linked List l Traversal, Insertion and.
1 Chapter 16 Linked Structures Dale/Weems/Headington.
1 C++ Plus Data Structures Nell Dale Chapter 10 Sorting and Searching Algorithms Slides by Sylvia Sorkin, Community College of Baltimore County - Essex.
Chapter 9 slide 1 Introduction to Search Algorithms Search: locate an item in a list (array, vector, table, etc.) of information Two algorithms (methods):
1 Chapter 13-1 Applied Arrays: Lists and Strings Dale/Weems.
1 Nell Dale Chapter 8 Binary Search Trees Modified from the slides by Sylvia Sorkin, Community College of Baltimore County - Essex Campus C++ Plus Data.
Chapter 6 Lists Plus. What is a Class Template? A class template allows the compiler to generate multiple versions of a class type by using type parameters.
1 Data Structures and Algorithms Stacks and Queues.
1 C++ Plus Data Structures Nell Dale Chapter 5 Linked Structures Modified from the slides by Sylvia Sorkin, Community College of Baltimore County - Essex.
Chapter 4 ADT Sorted List. Sorted Type Class Interface Diagram SortedType class IsFull GetLength ResetList DeleteItem PutItem MakeEmpty GetItem Private.
What is a List? A list is a homogeneous collection of elements, with a linear relationship between elements. Each list element (except the first) has a.
1 Chapter 13-2 Applied Arrays: Lists and Strings Dale/Weems.
1 Chapter 13 Applied Arrays: Lists and Strings Dale/Weems/Headington.
CS 302 – Data Structures Sections 3.1, 3.2, 3.4 & 3.5
Prof. amr Goneid, AUC1 CSCE 110 PROGRAMMING FUNDAMENTALS WITH C++ Prof. Amr Goneid AUC Part 15. Dictionaries (1): A Key Table Class.
CSI 1340 Introduction to Computer Science II Chapter 3 ADTs Unsorted List and Sorted List.
1 Chapter 4 ADT Sorted List. 2 Sorted Type Class Interface Diagram SortedType class IsFull LengthIs ResetList DeleteItem InsertItem MakeEmpty RetrieveItem.
Chapter 17: Linked Lists. Objectives In this chapter, you will: – Learn about linked lists – Learn the basic properties of linked lists – Explore insertion.
Chapter 13 Applied Arrays: Lists and Strings
C++ Plus Data Structures ADTs Unsorted List and Sorted List
TA: Nouf Al-Harbi Data Structures LAB 3 TA: Nouf Al-Harbi
C++ Plus Data Structures
C++ Plus Data Structures
Unsorted Lists CS3240, L. Grewe.
C++ Plus Data Structures
Chapter 16 Linked Structures
C++ Plus Data Structures
CSI 1340 Introduction to Computer Science II
Chapter 13 Applied Arrays: Lists and Strings
Yan Shi CS/SE 2630 Lecture Notes
Data Structures and Algorithms Memory allocation and Dynamic Array
TA: Nouf Al-Harbi Data Structures LAB 2 TA: Nouf Al-Harbi
Presentation transcript:

1 Nell Dale Lecture 3 ADTs Unsorted List and Sorted List Slides by Sylvia Sorkin, Community College of Baltimore County - Essex Campus Modified by Reneta Barneva, SUNY College at Fredonia C++ Plus Data Structures

2 Topics to be considered  ADT Unsorted Lists  ADT Sorted Lists  Comparisons of complexity for different algorithms

3 Abstract Data Type (ADT) l A data type whose properties (domain and operations) are specified independently of any particular implementation.

4 l Application (or user) level: modeling real-life data in a specific context. l Logical (or ADT) level: abstract view of the domain and operations. WHAT l Implementation level: specific representation of the structure to hold the data items, and the coding for operations. HOW Data from 3 different levels

4 Basic Kinds of ADT Operations l Constructor -- creates a new instance (object) of an ADT. l Transformer -- changes the state of one or more of the data values of an instance. l Observer -- allows us to observe the state of one or more of the data values of an instance without changing them. l Iterator -- allows us to process all the components in a data structure sequentially. 5

6 Lists l Everyday lists (examples) l Lists are a useful and common ADT for any language l In Lisp the list is the main data structure l Lists are not a native data structure for C++

7 Lists l A list is a homogeneous collection of elements, with a linear relationship between elements. l That is, each list element (except the first) has a unique predecessor, and each element (except the last) has a unique successor.

8 Lists  The number of elements in a list is its length. The length is not fixed and can vary over time.  The only relationship in an unsorted list is pred and succ  A key member of a record is used to sort an unsorted list  A key is a member of a record whose value is used to determine the logical and/or physical order of the items in the list.

9 Sorted and Unsorted Lists UNSORTED LIST Elements are placed into the list in no particular order. SORTED LIST List elements are in an order that is sorted in some way -- either numerically or alphabetically by the elements themselves, or by a component of the element (called a KEY member).

ADT Unsorted List Operations Transformers n MakeEmpty n InsertItem n DeleteItem Observers n IsFull n LengthIs n RetrieveItem Iterators n ResetList n GetNextItem change state observe state process all 10

11 What is a Generic Data Type? A generic data type is a type for which the operations are defined but the types of the items being manipulated are not defined. One way to simulate such a type for our UnsortedList ADT is via a user-defined class ItemType with member function ComparedTo having enumerated type value LESS, GREATER, or EQUAL.

12 // SPECIFICATION FILE( itemtype.h ) const int MAX_ITEMS = 5 ; //some big number enum RelationType { LESS, EQUAL, GREATER } ; class ItemType// declares class data type { public : // 3 public member functions RelationType ComparedTo ( ItemType ) const ; void Print ( ) const ; void Initialize ( int number ) ; private :// 1 private data member int value ; // could be any different type } ; Specifying class ItemType

// IMPLEMENTATION FILE( itemtype.cpp ) // Implementation depends on the data type of value. #include "itemtype.h" #include using namespace std; RelationType ItemType::ComparedTo ( ItemType otherItem ) const { if ( value < otherItem.value ) return LESS ; else if ( value > otherItem.value ) return GREATER ; else return EQUAL ; } void ItemType::Print ( ) const { cout << value << endl ; } void ItemType::Initialize ( int number ) { value = number ; }

14 ItemType Class Interface Diagram Private data value ComparedTo Print Initialize class ItemType

// SPECIFICATION FILE( unsorted.h ) #include "ItemType.h" class UnsortedType// declares a class data type { public : // 8 public member functions void MakeEmpty ( ) ; bool IsFull ( ) const ; int LengthIs ( ) const ; // returns length of list void RetrieveItem ( ItemType& item, bool& found ) ; void InsertItem ( ItemType item ) ; void DeleteItem ( ItemType item ) ; void ResetList ( ); void GetNextItem ( ItemType& item ) ; private :// 3 private data members int length ; ItemTypeinfo[MAX_ITEMS] ; intcurrentPos ; } ; 15

16 Class Interface Diagram UnsortedType class IsFull LengthIs ResetList DeleteItem InsertItem MakeEmpty RetrieveItem GetNextItem Private data: length info [ 0 ] [ 1 ] [ 2 ] [MAX_ITEMS-1] currentPos

// IMPLEMENTATION FILE ARRAY-BASED LIST ( unsorted.cpp ) #include "itemtype.h" void UnsortedType::MakeEmpty ( ) // Pre: None. // Post:List is empty. { length = 0 ; } void UnsortedType::InsertItem ( ItemType item ) // Pre: List has been initialized. List is not full. item is not in list. // Post: item is in the list. { info[length] = item ; length++ ; } 17

Before Inserting Boris into an Unsorted List length 3 info [ 0 ] Maxwell [ 1 ] Bradley [ 2 ] John [ 3 ]. [MAX_ITEMS-1] The item will be placed into the length location, and length will be incremented. 18

After Inserting Boris into an Unsorted List length 4 info [ 0 ] Maxwell [ 1 ] Bradley [ 2 ] John [ 3 ] Boris. [MAX_ITEMS-1] 19

void UnsortedType::LengthIs ( ) const // Pre: List has been inititalized. // Post:Function value == ( number of elements in list ). { return length ; } bool UnsortedType::IsFull ( ) const // Pre: List has been initialized. // Post:Function value == ( list is full ). { return ( length == MAX_ITEMS ) ; } 20

void UnsortedType::RetrieveItem ( ItemType& item, bool& found ) // Pre: Key member of item is initialized. // Post:If found, item’s key matches an element’s key in the list and a copy // of that element has been stored in item; otherwise, item is unchanged. { bool moreToSearch ; int location = 0 ; found = false ; moreToSearch = ( location < length ) ; while ( moreToSearch && !found ) {switch ( item.ComparedTo( info[location] ) ) { case LESS : case GREATER : location++ ; moreToSearch = ( location < length ) ; break; case EQUAL : found = true ; item = info[ location ] ; break ; } 21

Retrieving Ivan from an Unsorted List moreToSearch: true found: false location: 0 length 4 info [ 0 ] Maxwell [ 1 ] Bradley [ 2 ] John [ 3 ] Boris. [MAX_ITEMS-1] 22

Retrieving Ivan from an Unsorted List length 4 info [ 0 ] Maxwell [ 1 ] Bradley [ 2 ] John [ 3 ] Boris. [MAX_ITEMS-1] moreToSearch: true found: false location: 1 23

Retrieving Ivan from an Unsorted List length 4 info [ 0 ] Maxwell [ 1 ] Bradley [ 2 ] John [ 3 ] Boris. [MAX_ITEMS-1] moreToSearch: true found: false location: 2 24

Retrieving Ivan from an Unsorted List length 4 info [ 0 ] Maxwell [ 1 ] Bradley [ 2 ] John [ 3 ] Boris. [MAX_ITEMS-1] moreToSearch: true found: false location: 3 25

Retrieving Ivan from an Unsorted List length 4 info [ 0 ] Maxwell [ 1 ] Bradley [ 2 ] John [ 3 ] Boris. [MAX_ITEMS-1] moreToSearch: false found: false location: 4 26

void UnsortedType::DeleteItem ( ItemType item ) // Pre: item’s key has been inititalized. //An element in the list has a key that matches item’s. // Post:No element in the list has a key that matches item’s. { int location = 0 ; while (item.ComparedTo (info [location] ) != EQUAL ) location++; // move last element into position where item was located info [location] = info [length - 1 ] ; length-- ; } 27

Deleting Bradley from an Unsorted List location: 0 length 4 info [ 0 ] Maxwell [ 1 ] Bradley [ 2 ] John [ 3 ] Boris. [MAX_ITEMS-1] Key Bradley has not been matched. 28

Deleting Bradley from an Unsorted List location: 1 length 4 info [ 0 ] Maxwell [ 1 ] Bradley [ 2 ] John [ 3 ] Boris. [MAX_ITEMS-1] Key Bradley has been matched. 29

Deleting Bradley from an Unsorted List location: 1 length 4 info [ 0 ] Maxwell [ 1 ] Boris [ 2 ] John [ 3 ] Boris. [MAX_ITEMS-1] Placed copy of last list element into the position where the key Bradley was before. 30

Deleting Bradley from an Unsorted List location: 1 length 3 info [ 0 ] Maxwell [ 1 ] Boris [ 2 ] John [ 3 ] Boris. [MAX_ITEMS-1] Decremented length. 31

void UnsortedType::ResetList ( ) // Pre: List has been inititalized. // Post:Current position is prior to first element in list. { currentPos = -1 ; } void UnsortedType::GetNextItem ( ItemType& item ) // Pre: List has been initialized. Current position is defined. //Element at current position is not last in list. // Post:Current position is updated to next position. // item is a copy of element at current position. { currentPos++ ; item = info [currentPos] ; } 32

33 SortedType Class Interface Diagram SortedType class IsFull LengthIs ResetList DeleteItem InsertItem MakeEmpty RetrieveItem Private data: length info [ 0 ] [ 1 ] [ 2 ] [MAX_ITEMS-1] currentPos GetNextItem

34 Member functions Which member function specifications and implementations must change to ensure that any instance of the Sorted List ADT remains sorted at all times? n InsertItem n DeleteItem Which function can be improved? n RetrieveItem

35 InsertItem algorithm for SortedList ADT l Find proper location for the new element in the sorted list. l Create space for the new element by moving down all the list elements that will follow it. l Put the new element in the list. l Increment length.

36 Implementing SortedType member function InsertItem // IMPLEMENTATION FILE (sorted.cpp) #include "itemtype.h" // also must appear in client code void SortedType :: InsertItem ( ItemType item ) // Pre: List has been initialized. List is not full. item is not in list. // List is sorted by key member using function ComparedTo. // Post: item is in the list. List is still sorted. {. }

// Sequential search of the position void SortedType :: InsertItem ( ItemType item ) { bool moreToSearch ; int location = 0 ; // find proper location for new element moreToSearch = ( location < length ) ; while ( moreToSearch ) {switch ( item.ComparedTo( info[location] ) ) { case LESS : moreToSearch = false ; break ; case GREATER : location++ ; moreToSearch = ( location < length ) ; break ; } }// make room for new element in sorted list for ( int index = length ; index > location ; index-- ) info [ index ] = info [ index - 1 ] ; info [ location ] = item ; length++ ; }

38 DeleteItem algorithm for SortedList ADT l Find the location of the element to be deleted from the sorted list. l Eliminate space occupied by the item being deleted by moving up all the list elements that follow it. l Decrement length.

39 Implementing SortedType member function DeleteItem // IMPLEMENTATION FILE continued (sorted.cpp) void SortedType :: DeleteItem ( ItemType item ) // Pre: List has been initialized. Key member of item is initialized. //Exactly one element in list has a key matching item’s key. // List is sorted by key member using function ComparedTo. // Post: No item in list has key matching item’s key. // List is still sorted. {. }

void SortedType :: DeleteItem ( ItemType item ) { int location = 0 ; // find location of element to be deleted while ( item.ComparedTo ( info[location] ) != EQUAL ) location++ ; // move up elements that follow deleted item in sorted list for ( int index = location + 1 ; index < length ; index++ ) info [ index - 1 ] = info [ index ] ; length -- ; } 40

41 Improving member function RetrieveItem Recall that with the Unsorted List ADT we examined each list element beginning with info[ 0 ], until we either found a matching key, or we had examined all the elements in the Unsorted List. How can the searching algorithm be improved for Sorted List ADT?

Retrieving Eliot from a Sorted List The sequential search for Eliot can stop when Hsing has been examined. length 4 info [ 0 ] Asad [ 1 ] Bradley [ 2 ] Hsing [ 3 ] Maxwell. [MAX_ITEMS-1] 42

43 Binary Search in a Sorted List l Examines the element in the middle of the array. Is it the sought item? If so, stop searching. Is the middle element too small? Then start looking in second half of array. Is the middle element too large? Then begin looking in first half of the array. l Repeat the process in the half of the list that should be examined next. l Stop when item is found, or when there is nowhere else to look and item has not been found.

void SortedType::RetrieveItem ( ItemType& item, bool& found ) // Pre: Key member of item is initialized. // Post:If found, item’s key matches an element’s key in the list and a copy // of that element has been stored in item; otherwise, item is unchanged. { int midPoint ; int first = 0; intlast = length - 1 ; bool moreToSearch = ( first <= last ) ; found = false ; while ( moreToSearch && !found ) {midPoint = ( first + last ) / 2 ;// INDEX OF MIDDLE ELEMENT switch ( item.ComparedTo( info [ midPoint ] ) ) { case LESS :... // LOOK IN FIRST HALF NEXT case GREATER :... // LOOK IN SECOND HALF NEXT case EQUAL :... // ITEM HAS BEEN FOUND }

45 Trace of Binary Search info[0] [1] [2] [3] [4] [5] [6] [7] [8] [9] item = 45 first midPoint last info[0] [1] [2] [3] [4] [5] [6] [7] [8] [9] first midPoint last LESS last = midPoint - 1 GREATERfirst = midPoint + 1

46 Trace continued info[0] [1] [2] [3] [4] [5] [6] [7] [8] [9] item = 45 first, midPoint, last info[0] [1] [2] [3] [4] [5] [6] [7] [8] [9] first, last midPoint LESS last = midPoint - 1GREATERfirst = midPoint + 1

47 Trace concludes info[0] [1] [2] [3] [4] [5] [6] [7] [8] [9] item = 45 last first first > last found = false

void SortedType::RetrieveItem ( ItemType& item, bool& found ) // ASSUMES info ARRAY SORTED IN ASCENDING ORDER { int midPoint ; int first = 0; intlast = length - 1 ; bool moreToSearch = ( first <= last ) ; found = false ; while ( moreToSearch && !found ) {midPoint = ( first + last ) / 2 ; switch ( item.ComparedTo( info [ midPoint ] ) ) { case LESS :last = midPoint - 1 ; moreToSearch = ( first <= last ) ; break ; case GREATER : first = midPoint + 1 ; moreToSearch = ( first <= last ) ; break ; case EQUAL : found = true ; item = info[ midPoint ] ; break ; }

49 LengthLinearBinary Comparison of Linear and Binary Search

Order of Magnitude of a Function The order of magnitude, or Big-O notation, of a function expresses the computing time of a problem as the term in a function that increases most rapidly relative to the size of a problem. 50

Names of Orders of Magnitude O(1) bounded (by a constant) time O(log 2 N) logarithmic time O(N) linear time O(N*log 2 N) N*log 2 N time O(N 2 ) quadratic time O( 2 N ) exponential time 51

N log 2 N N*log 2 N N 2 2 N , ,294,967, E ,384 4E38

Big-O Comparison of List Operations OPERATION UnsortedList SortedList RetrieveItem O(N) O(N) linear search O(log 2 N) binary search InsertItem Find O(1) O(N) search Put O(1) O(N) moving down Combined O(1) O(N) DeleteItem Find O(N) O(N) search Put O(1) swap O(N) moving up Combined O(N) O(N)

Big-O Comparison of List Operations ResetListO(1)O(1) MakeEmptyO(1)O(1) IsFullO(1)O(1) LengthIsO(1)O(1) GetNextItemO(1)O(1) OPERATION UnsortedList SortedList

Two Forms of Composite Data Types Components are not organized with respect to one another. The organization determines method used to access individual data components. UNSTRUCTURED STRUCTURED EXAMPLES: EXAMPLES: arrays classes and structs 55

56 Class Constructor A special member function of a class that is implicitly invoked when a class object is defined.

57 Class Constructor Rules 1A constructor cannot return a function value, and has no return value type. 2A class may have several constructors. The compiler chooses the appropriate constructor by the number and types of parameters used. 3Constructor parameters are placed in a parameter list in the declaration of the class object. 4The parameterless constructor is the default constructor. 5If a class has at least one constructor, and an array of class objects is declared, then one of the constructors must be the default constructor, which is invoked for each element in the array.

58 SortedType with 2 constructors SortedType class Private data: length info [ 0 ] [ 1 ] [ 2 ] [MAX_ITEMS-1] currentPos IsFull LengthIs MakeEmpty RetrieveItem. GetNextItem SortedType

// SPECIFICATION FILE( sorted.h ) #include "ItemType.h" class SortedType { public : SortedType ( ) ; // Default constructor SortedType ( ItemType initialValue ) ; // Parameterized constr. void MakeEmpty ( ) ; // OTHER MEMBER FUNCTIONS HERE. private :// private data members int length ; ItemTypeinfo[MAX_ITEMS] ; intcurrentPos ; } ;

60 Default Constructor // IMPLEMENTATION FILE (sorted.cpp) SortedType :: SortedType ( ) // Pre: None // Post: length is initialized to 0. { length = 0 ; currentPos = -1; }

61 Parameterized Constructor // IMPLEMENTATION FILE (sorted.cpp) SortedType :: SortedType ( ItemType initialValue ) // Pre: initialValue has been assigned a value. // Post: length is initialized to 0. Each element of list is initialized //to initialValue. { length = 0 ; currentPos = -1; for ( int counter = 0 ; counter < MAX_ITEMS ; counter++ ) info [ counter ] = initialValue ; }

62 StrType Class Interface Diagram: Example of Overloaded Operators StrType class Private data: letters GetString operator == operator< MakeEmpty PrintToScreen. ‘c’ ’a’ ’t’ ’ \0 ’... StrType

63 // IMPLEMENTATION FILE (strtype.cpp) #include "strtype.h" // also appears in client code StrType :: StrType( )// DEFAULT CONSTRUCTOR // Pre: None. // Post: letters is empty string. { letters[0] = ‘\0’ ; } class StrType Default Constructor

// SPECIFICATION FILE( strtype.h ) const int MAX_CHARS = 200 ; enum InType { ALPHA_NUM, ALPHA, NON_WHITE, NOT_NEW } ; class StrType { public : StrType ( ) ; // DEFAULT CONSTRUCTOR void MakeEmpty ( ) ; void GetString ( bool skip, InType charsAllowed ) ; void PrintToScreen ( bool newLine ) const ;.. // OVERLOADED OPERATORS bool operator< (StrType otherString ) const ; bool operator== (StrType otherString ) const ; private : char letters [MAX_CHARS + 1 ] ; } ;

// IMPLEMENTATION FILE continued (strtype.cpp) // operator< OVERLOADED bool StrType :: operator< ( StrType otherString ) const // Pre: self is initialized. otherString is initialized. // Post: Returns true if self precedes otherString //lexicographically. Otherwise, returns false. { int result ; result = strcmp ( letters, otherString.letters ) ; if ( result < 0 ) return true; else return false ; }

// IMPLEMENTATION FILE continued (strtype.cpp) // operator== OVERLOADED bool StrType :: operator==( StrType otherString ) const // Pre: self is initialized. otherString is initialized. // Post: Returns true if self is identical to otherString //lexicographically. Otherwise, returns false. { int result ; result = strcmp ( letters, otherString.letters ) ; if ( result == 0 ) return true; else return false ; }