adt stack
play

ADT Stack 1 Stacks of Coins and Plates 2 Stacks of Rocks and - PowerPoint PPT Presentation

ADT Stack 1 Stacks of Coins and Plates 2 Stacks of Rocks and Books TOP OF THE STACK TOP OF THE STACK Add, remove rock and book from the top, or else 3 Stack at logical level A stack is an ADT in which elements add added and


  1. ADT Stack 1

  2. Stacks of Coins and Plates 2

  3. Stacks of Rocks and Books TOP OF THE STACK TOP OF THE STACK Add, remove rock and book from the top, or else… 3

  4. Stack at logical level • A stack is an ADT in which elements add added and removed from only one end (i.e.,at the top of the stack). • A stack is a LIFO “last in, first out” structure. 4

  5. Stack at Logical Level • What operations would be appropriate for a stack? 5

  6. Stack Operations Transformers • Push change state • Pop Observers • Top • IsEmpty observe state • IsFull 6

  7. Stack at Application Level • For what types of problems would be stack be useful for? • LIFO: good for reversing data • If we push a, b, c, d into a stack, and then pop all elements out, we get d, c, b, a • In OS/language: function call stack • Finding Palindromes • Expression evaluation and Syntax Parsing 7

  8. Function call stack • For what types of problems would be stack be useful for? • LIFO: good for reversing data • If we push a, b, c, d into a stack, and then pop all elements out, we get d, c, b, a • In OS/language: function call stack • Finding Palindromes • Expression evaluation and Syntax Parsing 8

  9. Use stack to reverse • Sometimes you need to output in reverse orders Convert decimal to binary: DisplayInBinary (int num) while (num>0) digit = num % 2 print digit num = num / 2 • The binary representation is printed backward • Trace it with num=21, output? • Solution: push each digit onto a stack in the loop, after the loop, pop digits out one by one and display it. 9

  10. Use stack to backtrack • In maze-walking algorithm, we can use stack to store all nodes that we led us to current node, so that we can backtrack when needed. • Goal: find a path via white blocks from (0,0) to (5,5) • Need to explore: try diff. next step • and backtrack (when reach dead-end): i.e., reverse back to previous node 10

  11. Stack of ItemTypes class StackType { public: What are the StackType( ); pre and post bool IsFull () const; conditions? bool IsEmpty() const; void Push( ItemType item ); void Pop(); ItemType Top() const; }; 11

  12. Stack Implementation • array-based implementation: static or dynamic array • linked-structure implementation 12

  13. class StackType { public: StackType( ); bool IsFull () const; bool IsEmpty() const; 2 void Push( ItemType item ); unused void Pop(); slots/garbage ItemType Top(); ‘c’ private: ‘b’ Stack int top; ItemType items[MAX_ITEMS]; items ‘a’ }; 13

  14. Class Interface Diagram 
 (Memory reversed to better illustrate concept) StackType class Private data: StackType top IsEmpty [MAX_ITEMS-1] IsFull . . . Push [ 2 ] [ 1 ] Pop items [ 0 ] Top 14

  15. Initialize stack How to initialize data member top? 0 or -1 Depends on what top stores: * initialized to 0: If it’s the next open slot * initialized to -1: if it’s the index of stack top element Need to be consistent in all member functions, Top(), Push(), Pop(), isfull, isEmpty()… Below we use second option: StackType::StackType( ) { top = -1; //index of top element in stack } 15

  16. // pre: the stack has been initialized // post: return true if the stack is empty, false ow bool StackType::IsEmpty() const { return(top == -1); } //pre: //post: bool StackType::IsFull() const { return (top = = MAX_ITEMS-1); } 16

  17. void StackType::Push(ItemType newItem) { if( IsFull() ) throw FullStack(): top++; items[top] = newItem; } void StackType::Pop() { if( IsEmpty() ) throw EmptyStack(); top--; } ItemType StackType::Top() { if (IsEmpty()) throw EmptyStack(); return items[top]; } 17

  18. Tracing Client Code letter ‘V’ char letter = ‘V’; StackType charStack; charStack.Push(letter); Private data: charStack.Push(‘C’); charStack.Push(‘S’); top if ( !charStack.IsEmpty( )) charStack.Pop( ); [MAX_ITEMS-1] charStack.Push(‘K’); . . while (!charStack.IsEmpty( )) { letter = charStack.Top(); [ 2 ] charStack.Pop(0)} [ 1 ] items [ 0 ] 18

  19. 
 Stack Implementation: linked structure • One advantage of an ADT is that the implementation can be changed without the program using it knowing about it. • in-object array implementation: has a fixed max. size • dynamically allocated array (as in lab2?): can be grown when needed, but lots of copy! • Linked structure: dynamically allocate the space for each element as it is pushed onto stack. 19

  20. ItemType is char class StackType StackType Top Private data: IsEmpty topPtr ‘C’ ‘V’ IsFull Push Pop ~StackType 20

  21. // DYNAMICALLY LINKED IMPLEMENTATION OF STACK struct NodeType; //Forward declaration class StackType { public: //Identical to previous implementation /* Add: copy-constructor, destructor, assignment operator: since dynamic memory is used! */ private: NodeType* topPtr; }; . . . struct NodeType { ItemType info; NodeType* next; }; 21

  22. Implementing Push void StackType::Push ( ItemType newItem ) // Adds newItem to the top of the stack. { NodeType* location; location = new NodeType; location->info = newItem; location->next = topPtr; topPtr = location; } 22

  23. Deleting top element from the stack item NodeType* tempPtr; item = topPtr->info; tempPtr = topPtr; topPtr = topPtr->next; delete tempPtr; ‘B’ ‘X’ ‘C’ ‘L’ topPtr tempPtr 23

  24. Deleting top element from the stack item ‘B’ NodeType* tempPtr; item = topPtr->info; tempPtr = topPtr; topPtr = topPtr->next; delete tempPtr; ‘B’ ‘X’ ‘C’ ‘L’ topPtr tempPtr 24

  25. Deleting item from the stack item ‘B’ NodeType* tempPtr; item = topPtr->info; tempPtr = topPtr; topPtr = topPtr->next; delete tempPtr; ‘B’ ‘X’ ‘C’ ‘L’ topPtr tempPtr 25

  26. Deleting item from the stack item ‘B’ NodeType* tempPtr; item = topPtr->info; tempPtr = topPtr; topPtr = topPtr->next; delete tempPtr; ‘B’ ‘X’ ‘C’ ‘L’ topPtr tempPtr 26

  27. Deleting item from the stack ‘B’ item NodeType<ItemType>* tempPtr; item = topPtr->info; tempPtr = topPtr; topPtr = topPtr->next; delete tempPtr; ‘X’ ‘C’ ‘L’ topPtr tempPtr 27

  28. Implementing Pop void StackType::Pop() // Remove top item from Stack. { if (IsEmpty()) throw EmptyStack(); else { NodeType* tempPtr; tempPtr = topPtr; topPtr = topPtr ->next; delete tempPtr; } } 28

  29. Implementing Top ItemType StackType::Top() // Returns a copy of the top item in the stack. { if (IsEmpty()) throw EmptyStack(); else return topPtr->info; } 29

  30. Implementing IsFull bool StackType::IsFull() const // Returns true if there is no room for another // ItemType on the free store; false otherwise { NodeType* location; try { location = new NodeType; delete location; return false; } catch(std::bad_alloc exception) { return true; } } 30

  31. Array vs Linked Structure • Drawback of array-based implementation: • at any point of time, array is either filled or not • memory is either not enough, • or wasted • Linked Structure: allocate on demand • Drawback: need to store lots of addresses (in pointer field of node) • if ItemType is small compared to pointer, then it’s not memory efficient 31

  32. Efficiency comparison 32

  33. C++ Standard Template Library • a set of C++ class templates that provides common programming data structures and functions • lists, stacks, queues, hash table, many more… • all data structures/container are implemented as class template, which can be parameterized: • vector<int>, vector<double> … • stack<int>, stack<char> • the type in <> is type parameter, specifying the type of items that the stack stores… 33

  34. Sample code using STL stack 34

  35. Sample code using STL stack More info on stack 35

  36. Exercises • use C++ STL stack to finish the code that displays a number in binary 36

  37. Problem Solving using Stack • check for balanced parenthesis (, ), {, }, [, ]. • Balanced parentheses: means that each opening symbol has a corresponding closing symbol and the pairs of parentheses are properly nested. • examples: are the following balanced? • ( ) ( ) ] • { [ ( ) ( } ) • [ () ]{ } • { [ ( )( ) ] { } } • How to write a function/program to check? 37

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend