1 / 115

C++ Programming: Program Design Including Data Structures, Fifth Edition

C++ Programming: Program Design Including Data Structures, Fifth Edition. Chapter 18: Stacks and Queues. Objectives. In this chapter, you will: Learn about stacks Examine various stack operations Learn how to implement a stack as an array Learn how to implement a stack as a linked list

verda
Télécharger la présentation

C++ Programming: Program Design Including Data Structures, Fifth Edition

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++ Programming:Program Design IncludingData Structures, Fifth Edition Chapter 18: Stacks and Queues

  2. Objectives In this chapter, you will: • Learn about stacks • Examine various stack operations • Learn how to implement a stack as an array • Learn how to implement a stack as a linked list • Discover stack applications • Learn how to use a stack to remove recursion C++ Programming: Program Design Including Data Structures, Fifth Edition

  3. Objectives (cont'd.) • Learn about queues • Examine various queue operations • Learn how to implement a queue as an array • Learn how to implement a queue as a linked list • Discover queue applications C++ Programming: Program Design Including Data Structures, Fifth Edition

  4. Stacks • Stack: list of homogenous elements • Addition and deletion occur only at one end, called the top of the stack • Example: in a cafeteria, the second tray can be removed only if first tray has been removed • Last in first out (LIFO) data structure • Operations: • Push: to add an element onto the stack • Pop: to remove an element from the stack C++ Programming: Program Design Including Data Structures, Fifth Edition

  5. Stacks (cont’d.) C++ Programming: Program Design Including Data Structures, Fifth Edition

  6. Stacks (cont’d.) C++ Programming: Program Design Including Data Structures, Fifth Edition

  7. Stack Operations • In the abstract class stackADT: • initializeStack • isEmptyStack • isFullStack • push • top • pop C++ Programming: Program Design Including Data Structures, Fifth Edition

  8. Implementation of Stacks as Arrays • First element can go in first array position, the second in the second position, etc. • The top of the stack is the index of the last element added to the stack • Stack elements are stored in an array • Stack element is accessed only through top • To keep track of the top position, use a variable called stackTop C++ Programming: Program Design Including Data Structures, Fifth Edition

  9. Implementation of Stacks as Arrays (cont'd.) • Because stack is homogeneous • You can use an array to implement a stack • Can dynamically allocate array • Enables user to specify size of the array • The class stackType implements the functions of the abstract class stackADT C++ Programming: Program Design Including Data Structures, Fifth Edition

  10. Implementation of Stacks as Arrays (cont'd.) C++ Programming: Program Design Including Data Structures, Fifth Edition

  11. Implementation of Stacks as Arrays (cont'd.) • C++ arrays begin with the index 0 • Must distinguish between: • The value of stackTop • The array position indicated by stackTop • If stackTop is 0, the stack is empty • If stackTop is nonzero, the stack is not empty • The top element is given by stackTop - 1 C++ Programming: Program Design Including Data Structures, Fifth Edition

  12. Implementation of Stacks as Arrays (cont'd.) C++ Programming: Program Design Including Data Structures, Fifth Edition

  13. Initialize Stack C++ Programming: Program Design Including Data Structures, Fifth Edition

  14. Empty Stack • If stackTop is 0, the stack is empty C++ Programming: Program Design Including Data Structures, Fifth Edition

  15. Full Stack • The stack is full if stackTop is equal to maxStackSize C++ Programming: Program Design Including Data Structures, Fifth Edition

  16. Push • Store the newItem in the array component indicated by stackTop • Increment stackTop • Must avoid an overflow C++ Programming: Program Design Including Data Structures, Fifth Edition

  17. Push (cont'd.) C++ Programming: Program Design Including Data Structures, Fifth Edition

  18. Return the Top Element C++ Programming: Program Design Including Data Structures, Fifth Edition

  19. Pop • Simply decrement stackTop by 1 • Must check for underflow condition C++ Programming: Program Design Including Data Structures, Fifth Edition

  20. Pop (cont’d.) C++ Programming: Program Design Including Data Structures, Fifth Edition

  21. Pop (cont’d.) C++ Programming: Program Design Including Data Structures, Fifth Edition

  22. Copy Stack C++ Programming: Program Design Including Data Structures, Fifth Edition

  23. Constructor and Destructor C++ Programming: Program Design Including Data Structures, Fifth Edition

  24. Constructor and Destructor (cont'd.) C++ Programming: Program Design Including Data Structures, Fifth Edition

  25. Copy Constructor C++ Programming: Program Design Including Data Structures, Fifth Edition

  26. Overloading the Assignment Operator (=) C++ Programming: Program Design Including Data Structures, Fifth Edition

  27. Stack Header File • Place definitions of class and functions (stack operations) together in a file C++ Programming: Program Design Including Data Structures, Fifth Edition

  28. Programming Example: Highest GPA • Input: program reads an input file with each student’s GPA and name 3.5 Bill 3.6 John 2.7 Lisa 3.9 Kathy 3.4 Jason 3.9 David 3.4 Jack • Output: the highest GPA and all the names associated with the highest GPA C++ Programming: Program Design Including Data Structures, Fifth Edition

  29. Programming Example: Problem Analysis and Algorithm Design • Read the first GPA and name of the student • This is the highest GPA so far • Read the second GPA and student name • Compare this GPA with highest GPA so far • New GPA is greater than highest GPA so far • Update highest GPA, initialize stack, add to stack • New GPA is equal to the highest GPA so far • Add name to stack • New GPA is smaller than the highest GPA • Discard C++ Programming: Program Design Including Data Structures, Fifth Edition

  30. Programming Example: Problem Analysis and Algorithm Design (cont’d.) C++ Programming: Program Design Including Data Structures, Fifth Edition

  31. Programming Example: Problem Analysis and Algorithm Design (cont’d.) C++ Programming: Program Design Including Data Structures, Fifth Edition

  32. Linked Implementation of Stacks • Array only allows fixed number of elements • If number of elements to be pushed exceeds array size • Program may terminate • Linked lists can dynamically organize data • In a linked representation, stackTop is pointer to top element in stack C++ Programming: Program Design Including Data Structures, Fifth Edition

  33. Linked Implementation of Stacks (cont’d.) C++ Programming: Program Design Including Data Structures, Fifth Edition

  34. Default Constructor • Initializes the stack to an empty state when a stack object is declared • Sets stackTop to NULL C++ Programming: Program Design Including Data Structures, Fifth Edition

  35. Empty Stack and Full Stack • In the linked implementation of stacks, the function isFullStack does not apply • Logically, the stack is never full C++ Programming: Program Design Including Data Structures, Fifth Edition

  36. Initialize Stack C++ Programming: Program Design Including Data Structures, Fifth Edition

  37. Push • The newElement is added at the beginning of the linked list pointed to by stackTop C++ Programming: Program Design Including Data Structures, Fifth Edition

  38. Push (cont'd.) C++ Programming: Program Design Including Data Structures, Fifth Edition

  39. Push (cont'd.) • We do not need to check whether the stack is full before we push an element onto the stack C++ Programming: Program Design Including Data Structures, Fifth Edition

  40. Return the Top Element C++ Programming: Program Design Including Data Structures, Fifth Edition

  41. Pop • Node pointed to by stackTop is removed C++ Programming: Program Design Including Data Structures, Fifth Edition

  42. Pop (cont'd.) C++ Programming: Program Design Including Data Structures, Fifth Edition

  43. Pop (cont'd.) C++ Programming: Program Design Including Data Structures, Fifth Edition

  44. Copy Stack C++ Programming: Program Design Including Data Structures, Fifth Edition

  45. Copy Stack (cont'd.) • Notice that this function is similar to the definition of copyList for linked lists C++ Programming: Program Design Including Data Structures, Fifth Edition

  46. Constructors and Destructors C++ Programming: Program Design Including Data Structures, Fifth Edition

  47. Overloading the Assignment Operator (=) C++ Programming: Program Design Including Data Structures, Fifth Edition

  48. Stack as Derived from the class unorderedLinkedList • Our implementation of push is similar to insertFirst (discussed for general lists) • Other functions are similar too: • initializeStack and initializeList • isEmptyList and isEmptyStack • linkedStackType can be derived from linkedListType • class linkedListType is abstract • Must implement pop as described earlier C++ Programming: Program Design Including Data Structures, Fifth Edition

  49. Derived Stack (cont’d.) • unorderedLinkedListType is derived from linkedListType • Provides the definitions of the abstract functions of the class linkedListType • We can derive the linkedStackType from unorderedLinkedListType C++ Programming: Program Design Including Data Structures, Fifth Edition

  50. Application of Stacks: Postfix Expressions Calculator • Infix notation: usual notation for writing arithmetic expressions • The operator is written between the operands • Example: a + b • The operators have precedence • Parentheses can be used to override precedence C++ Programming: Program Design Including Data Structures, Fifth Edition

More Related