1 / 98

Nell Dale Chapter 3 ADTs Unsorted List and Sorted List

C++ Plus Data Structures. Nell Dale Chapter 3 ADTs Unsorted List and Sorted List. Abstract Data Type (ADT). A data type whose logical properties (domain and operations) are specified independently of any particular implementation. Data from 3 different levels.

adriel
Télécharger la présentation

Nell Dale Chapter 3 ADTs Unsorted List and Sorted List

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. C++ Plus Data Structures Nell Dale Chapter 3 ADTs Unsorted List and Sorted List

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

  3. Data from 3 different levels • Application (or user) level: modeling real-life data in a specific context. • WHY the ADT behaves as it does • Logical (or ADT) level: abstract view of the domain and operations. • WHAT the ADT does • Implementation level: specific representation of the structure to hold the data items, and the coding for operations. • HOW the logical operations are carried out

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

  5. What is a List? • A list is a homogeneous collection of elements, with a linear relationship between elements. • That is, each list element (except the first) has a unique predecessor, and each element (except the last) has a unique successor.

  6. 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.

  7. 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 isa 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.

  8. 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) .

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

  10. 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.

  11. // SPECIFICATION FILE ( unsorted.h ) #include “ItemType.h” class UnsortedType// declares a class data type { public : // 8 public member functions UnsortedType () ;// or MakeEmpty() ; bool IsFull ( ) const ; int LengthIs ( ) const ; // returns length of list void RetrieveItem ( ItemType& item, bool& found ) ; // returns item void InsertItem ( ItemType item ) ; void DeleteItem ( ItemType item ) ; void ResetList ( ); void GetNextItem ( ItemType& item ) ; // returns item private : // 3 private data members int length ; // to keep track of # of elements and the last item location ItemType info[MAX_ITEMS] ; int currentPos ; } ; 11

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

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

  14. Class Constructor Rules • A constructor cannot return a function value, and has no return value type. • A class may have several constructors. The compiler chooses the appropriate constructor by the number and types of parameters used. • Constructor parameters are placed in a parameter list in the declaration of the class object. • The parameterless constructor is the default constructor. • Let SomeType myObject; If the class has no constructors, the compiler generates a default constructor that does nothing otherwise the default constructor (it should be present – otherwise a syntax error occurs) is invoked. • If a class has at least one constructor, and an array of class objects is declared (ex. SomeType myObject[6]), then one of the constructors must be the default constructor, which is invoked for each element in the array.

  15. // IMPLEMENTATION FILE ARRAY-BASED LIST ( unsorted.cpp ) #include “itemtype.h” void UnsortedType:: UnsortedType () // 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 ; //place the item the length (at the end) length++ ; } 15

  16. Before Inserting Hsing into anUnsorted List The item will be placed into the length location, and length will be incremented. length 3 info [ 0 ] Maxwell [ 1 ] Bradley [ 2 ] Asad [ 3 ] . . . [MAX_ITEMS-1] 16 expanded by J. Goetz

  17. After Inserting Hsing into anUnsorted List length 4 info [ 0 ] Maxwell [ 1 ] Bradley [ 2 ] Asad [ 3 ] Hsing . . . [MAX_ITEMS-1] 17

  18. int 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 ) ; } 18

  19. void UnsortedType::RetrieveItem ( ItemType& item, bool& found ) // Pre: Key member of item is initialized. List is not full. Item is not in the list. // 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 ) ; case EQUAL : found = true ; item = info[ location ] ; break ; } } } //compare text for CS121 3rd edition p.718 19

  20. Retrieving Ivan from anUnsorted List length 4 info [ 0 ] Maxwell [ 1 ] Bradley [ 2 ] Asad [ 3 ] Hsing . . . [MAX_ITEMS-1] moreToSearch: true found: false location: 0 20

  21. Retrieving Ivan from anUnsorted List moreToSearch: true found: false location: 1 length 4 info [ 0 ] Maxwell [ 1 ] Bradley [ 2 ] Asad [ 3 ] Hsing . . . [MAX_ITEMS-1] 21

  22. Retrieving Ivan from anUnsorted List length 4 info [ 0 ] Maxwell [ 1 ] Bradley [ 2 ] Asad [ 3 ] Hsing . . . [MAX_ITEMS-1] moreToSearch: true found: false location: 2 22

  23. Retrieving Ivan from anUnsorted List length 4 info [ 0 ] Maxwell [ 1 ] Bradley [ 2 ] Asad [ 3 ] Hsing . . . [MAX_ITEMS-1] moreToSearch: true found: false location: 3 23

  24. Retrieving Ivan from anUnsorted List moreToSearch: false found: false location: 4 length 4 info [ 0 ] Maxwell [ 1 ] Bradley [ 2 ] Asad [ 3 ] Hsing . . . [MAX_ITEMS-1] 24

  25. void UnsortedType::DeleteItem ( ItemType item ) // Pre: item’s key has been inititalized. // One and only one 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-- ; } 25

  26. Deleting Bradley from anUnsorted List length 4 info [ 0 ] Maxwell [ 1 ] Bradley [ 2 ] Asad [ 3 ] Hsing . . . [MAX_ITEMS-1] location: 0 Key Bradley has not been matched. 26

  27. Deleting Bradley from anUnsorted List length 4 info [ 0 ] Maxwell [ 1 ] Bradley [ 2 ] Asad [ 3 ] Hsing . . . [MAX_ITEMS-1] location: 1 Key Bradley has been matched. 27

  28. Deleting Bradley from anUnsorted List length 4 info [ 0 ] Maxwell [ 1 ] Hsing [ 2 ] Asad [ 3 ] Hsing . . . [MAX_ITEMS-1] location: 1 Placed copy of last list element into the position where the key Bradley was before. 28

  29. Deleting Bradley from anUnsorted List length 3 info [ 0 ] Maxwell [ 1 ] Hsing [ 2 ] Asad [ 3 ] Hsing . . . [MAX_ITEMS-1] location: 1 Decremented length. 29

  30. 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] ; } 30

  31. Notes • Changes are not reflected on the list, so we need to • delete the original, • insert the modified version. • Notice that no operation is dependent on the type of the items in the structure. • Each program that uses the Unsorted List ADT defines ItemType within the context of the application and provides a comparison number function defined on two items of type ItemType.

  32. Specifying class ItemType // SPECIFICATION FILE ( itemtype.h ) const int MAX_ITEM = 5 ; //for the test enum RelationType { LESS, EQUAL, GREATER } ; class ItemType// declares class data type { public : ItemType()// 4 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 } ;

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

  34. ItemType Class Interface Diagram class ItemType ItemTypeo ComparedToo Private data value Print Initialize

  35. Test Notes 1 • The preconditions and postconditions determine the test necessary for a black-box testing strategy. • The code of the function determines a clearbox testing strategy. • Use a combination of the two strategies.

  36. Test Notes 2 • LengthIs(), InsertItem(), and DeleteItem() must be tested together. Insert several items and delete several items and check the length. • To do that use an auxiliary function PrintList() (see next slide and p.131) that uses LengthIs(), ResetList(), and GetNextItem() to iterate through the printing out the values. You can check the status of the list after a series of insertions and deletions. • IsFull() – insert 4 items and print result of the test, and then insert the 5th item and print the result of the test

  37. Application Level (the same for Sorted and Unsorted list) • Void PrintList(std:ofstream& dataFile, UnsortedType list) - it is defined without knowing how the list is implemented • { // Pre:list has been initialized, dataFile is open for writing // Post:Each component in the list has been written to dataFile, dataFile is still open int length; ItemType item; list.ResetList(); length = list.LengthIs() //local, called once – efficiency reason for (int counter = 1; counter <= length; counter++) { list. GetNextItem( item); Item.Print (dataFile); // the user has defined Print for ItemType – the user level } }

  38. Test Notes 3 • RetrieveItem() – we must search for • items that we know are in the list and • Items that are not in the list • look for the one than is less than the first item in the list • look for the one than is grater than the last item in the list • MakeEmpty() – we invoke when there are values in the list and then print out the number which should be zero. • How to test the boundary (the end cases for black-box testing strategy: the first, last positions and the only one in the list) – we must be sure that DeleteItem() can correctly delete these items • see the test plan on p.145

  39. Sorted List Add property to the linear sequence of items: The key member of any item (except the first) comes before the key member of the next one. Now, member function specifications and implementations must change to ensure that any instance of the Sorted List ADT remains sorted at all times? Observer functions do not change state of the list, so they don’t need to be changed, RetrieveItem can be improved Iterator functions: ResetList and GetNextItem are not change by the additional property. So only the functions must be changed are: • InsertItem • DeleteItem

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

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

  42. 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 // info ARRAY SORTED IN ASCENDING ORDER. // Post: item is in the list. List is still sorted. { . . . } // test boundary: the new element belongs at the beginning or the end in the list

  43. void SortedType :: InsertItem ( ItemType item ) { bool moreToSearch ; int location = 0 ; // 1. find proper location for new element moreToSearch = ( location < length ) ; //have not examined the last one while ( moreToSearch ) { switch ( item.ComparedTo( info[location] ) ) { case LESS : moreToSearch = false ; break ; //traverse until the new item is less ! // case EQUAL : Cannot happen case GREATER : location++ ; // next moreToSearch = ( location < length ); // last ? break ; } } // 2. make room for new element in sorted list, move down for ( int index = length ; index > location ; index-- ) // DOWNTO location + 1 info [ index ] = info [ index - 1 ] ; info [ location ] = item ; // 3. insert item length++ ; // 4. increment length } //compare text for CS121 3rd edition p.729

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

  45. 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. { . . . }

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

  47. 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? Stop when we pass the place where the item would be if it were there.

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

  49. Binary Seach in a Sorted List 1. Examines the element in the middle of the array. 2. Is it the sought item? If so, stop searching. 3. Is the middle element array[midpoint] too small? Then start looking in second half of array[midpoint + 1, length – 1]. 4. Is the middle element too large? Then begin looking in first half of the array[0, midpoint – 1] 5. Repeat the process in the half of the list that should be examined next. 6. Stop when item is found, or when there is nowhere else to look and item has not been found.

  50. void SortedType::RetrieveItem ( ItemType& item, bool& found ) // Pre: Key member of item is initialized. info ARRAY SORTED IN ASCENDING ORDER. // 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; //first and last indexes keep track int last = length - 1 ; //of the boundaries of the current search area (half) bool moreToSearch = ( first <= last ) ; found = false ; while ( moreToSearch && !found ) // 6. STOP if item is found or no more elements { midPoint = ( first + last ) / 2 ; // INDEX OF MIDDLE ELEMENT switch ( item.ComparedTo( info [ midPoint ] ) ) //1.examine middle element { // find the new current search area case EQUAL : . . . // 2. ITEM HAS BEEN FOUND case LESS : . . . // 3.LOOK IN FIRST HALF NEXT case GREATER : . . . // 4.LOOK IN SECOND HALF NEXT } } }

More Related