Containers: Stack. The Stack ADT. The Stack ADT. The Stack ADT

Similar documents
Containers: Stack. Jordi Cortadella and Jordi Petit Department of Computer Science

Containers: Queue and List. Jordi Cortadella and Jordi Petit Department of Computer Science

STACKS AND QUEUES. Problem Solving with Computers-II

Stacks and their Applications

IV. Stacks. A. Introduction 1. Consider the 4 problems on pp (1) Model the discard pile in a card game. (2) Model a railroad switching yard

Programming Abstractions

Data Structures and Algorithms

[CS302-Data Structures] Homework 2: Stacks

CSC 222: Computer Programming II. Spring 2004

The Stack ADT. Stacks. The Stack ADT. The Stack ADT. Set of objects in which the location an item is inserted and deleted is prespecified.

Stacks. stacks of dishes or trays in a cafeteria. Last In First Out discipline (LIFO)

Some Applications of Stack. Spring Semester 2007 Programming and Data Structure 1

An Introduction to Trees

Abstract Data Types 1

Abstract Data Types. CptS 223 Advanced Data Structures. Larry Holder School of Electrical Engineering and Computer Science Washington State University

STACKS. A stack is defined in terms of its behavior. The common operations associated with a stack are as follows:

Containers: Priority Queues. Jordi Cortadella and Jordi Petit Department of Computer Science

March 13/2003 Jayakanth Srinivasan,

Containers: Priority Queues

Top of the Stack. Stack ADT

List, Stack, and Queues

Top of the Stack. Stack ADT

Abstract Data Types 1

Stacks. Chapter 5. Copyright 2012 by Pearson Education, Inc. All rights reserved

Stack ADT. ! push(x) puts the element x on top of the stack! pop removes the topmost element from the stack.

Stacks. Revised based on textbook author s notes.

The Stack and Queue Types

Stacks, Queues (cont d)

l Determine if a number is odd or even l Determine if a number/character is in a range - 1 to 10 (inclusive) - between a and z (inclusive)

Linear Structures. Linear Structure. Implementations. Array details. List details. Operations 2/10/2013

Abstract Data Types. Stack. January 26, 2018 Cinda Heeren / Geoffrey Tien 1

Programming Abstractions

Stacks. Chapter 5. Copyright 2012 by Pearson Education, Inc. All rights reserved

09 STACK APPLICATION DATA STRUCTURES AND ALGORITHMS REVERSE POLISH NOTATION

Stacks Fall 2018 Margaret Reid-Miller

Lecture No.04. Data Structures

CS W3134: Data Structures in Java

ABSTRACT DATA TYPES (ADTS) COMP1927 Computing 2 16x1 Sedgewick Chapter 4

Data Structure using C++ Lecture 04. Data Structures and algorithm analysis in C++ Chapter , 3.2, 3.2.1

CMPT 225. Lecture 9 Stack

Stack. 4. In Stack all Operations such as Insertion and Deletion are permitted at only one end. Size of the Stack 6. Maximum Value of Stack Top 5

Stack and Its Implementation

! A data type for which: ! In fact, an ADT may be implemented by various. ! Examples:

Linear Structures. Linear Structure. Implementations. Array details. List details. Operations 4/18/2013

Introduction to Computers and C++ Programming p. 1 Computer Systems p. 2 Hardware p. 2 Software p. 7 High-Level Languages p. 8 Compilers p.

Lecture Data Structure Stack

Data Structures using OOP C++ Lecture 9

Programming Abstractions

Data Structures And Algorithms

CS 206 Introduction to Computer Science II

Stacks, Queues and Hierarchical Collections. 2501ICT Logan

Stacks. Gaddis 18.1, Molly A. O'Neil CS 2308 :: Spring 2016

the Stack stack ADT using the STL stack are parentheses balanced? algorithm uses a stack adapting the STL vector class adapting the STL list class

Ch. 18: ADTs: Stacks and Queues. Abstract Data Type

CS 171: Introduction to Computer Science II. Stacks. Li Xiong

ADT: Design & Implementation

EC8393FUNDAMENTALS OF DATA STRUCTURES IN C Unit 3

CSE143 Exam with answers Problem numbering may differ from the test as given. Midterm #2 February 16, 2001

Stacks, Queues and Hierarchical Collections

Stacks. CONTENTS 3.1 Introduction 1. Stack as an abstract data type 2. Representation of a Stack as an array 3.2Applications of Stack.

Data Structures and Algorithms

Dynamic Data Structures

Lists, Stacks, and Queues. (Lists, Stacks, and Queues ) Data Structures and Programming Spring / 50

CS 211 Programming Practicum Fall 2018

Formal Languages and Automata Theory, SS Project (due Week 14)

Introduction. Problem Solving on Computer. Data Structures (collection of data and relationships) Algorithms

Arrays and Linked Lists

CMPT 125: Practice Midterm Answer Key

! Determine if a number is odd or even. ! Determine if a number/character is in a range. - 1 to 10 (inclusive) - between a and z (inclusive)

double d0, d1, d2, d3; double * dp = new double[4]; double da[4];

-The Hacker's Dictionary. Friedrich L. Bauer German computer scientist who proposed "stack method of expression evaluation" in 1955.

ADTs Stack and Queue. Outline

Outline. Stacks. 1 Chapter 5: Stacks and Queues. favicon. CSI33 Data Structures

Review: Expressions, Variables, Loops, and more.

12 Abstract Data Types

CHAPTER 3 STACKS AND QUEUES. Iris Hui-Ru Jiang Fall 2008

MULTIMEDIA COLLEGE JALAN GURNEY KIRI KUALA LUMPUR

Instantiation of Template class

CS 211 Programming Practicum Spring 2018

Lecture 12 ADTs and Stacks

CS302 Data Structures using C++

The C++ Object Lifecycle. EECS 211 Winter 2019

Link-Based Implementations. Chapter 4

Stack Applications. Lecture 27 Sections Robb T. Koether. Hampden-Sydney College. Wed, Mar 29, 2017

Data Structure using C++ Lecture 04. Data Structures and algorithm analysis in C++ Chapter , 3.2, 3.2.1

CS24 Week 4 Lecture 2

! A data type for which: ! An ADT may be implemented using various. ! Examples:

Outline. Introduction to Programming (in C++) Algorithms on sequences. Reasoning about loops: Invariants. Maximum of a sequence. Maximum of a sequence

ADT Stack. Inserting and deleting elements occurs at the top of Stack S. top. bottom. Stack S

SimpleCalc. which can be entered into a TI calculator, like the one on the right, like this:

Introduction to Computer and Program Design 2. Lesson 6. Stacks. James C.C. Cheng Department of Computer Science National Chiao Tung University

CS 206 Introduction to Computer Science II

ADVANCED DATA STRUCTURES USING C++ ( MT-CSE-110 )

1. Stack Implementation Using 1D Array

B-Trees. nodes with many children a type node a class for B-trees. an elaborate example the insertion algorithm removing elements

Linear Data Structure

Stack Abstract Data Type


class Polynomial { public: Polynomial(const string& N = "no name", const vector<int>& C = vector<int>());... };

CSC 222: Computer Programming II. Spring 2005

Transcription:

Containers: Stack The Stack ADT A stack is a list of objects in which insertions and deletions can only be performed at the top of the list. Also known as LIFO Last In, First Out) push insert an element at the top) pop delete the most recently inserted element) template <typename T> class Stack { // Default constructor Stack) { private: vector<t> data; ; Jordi Cortadella and Jordi Petit Department of Computer Science The Stack ADT The definition can handle generic stacks of any type T. The default constructor does not need to do anything: a zero-sized vector is constructed by default. 8 3 1 top the most recently inserted element) empty is there any element?) Note: pop and top generate an error on an empty stack Containers: Stacks Dept. CS, UPC 2 template <typename T> class Stack { bool empty) const { return data.size) == 0; ; The Stack ADT const T& top) const { // Returns a const reference assert not empty)); return data.back); T& top) { // Returns a reference assert not empty)); return data.back); void pop) { assert not empty)); data.pop_back); void pushconst T& x) { data.push_backx); Containers: Stacks Dept. CS, UPC 3 Containers: Stacks Dept. CS, UPC 4

Balancing symbols Balancing symbols: check for syntax errors when expressions have opening/closing symbols, e.g., ) [] { Correct: [){)[)])] Incorrect: [){ Algorithm linear): read all chars until end of file. For each char, do the following: If the char is opening, push it onto the stack. If the char is closing and stack is empty error, otherwise pop a symbol from the stack and check they match. If not error. At the end of the file, check the stack is empty. Exercise: implement and try the above examples. Containers: Stacks Dept. CS, UPC Evaluation of postfix expressions: example Evaluation of postfix expressions This is an infix expression. What s his value? 42 or 98? 8 3 10 2 4 It depends on the operator precedence. For scientific calculators, has precedence over. Postfix reverse Polish notation) has no ambiguity: 8 3 10 2 4 Postfix expressions can be evaluated using a stack: each time an operand is read, it is pushed on the stack each time an operator is read, the two top values are popped and operated. The result is push onto the stack Containers: Stacks Dept. CS, UPC 2 3 8 3 a b c d e f ) g a b c d e f g 3 2 8 40 4 3 4 48 288 Algorithm: When an operand is read, write it to the output. If we read a right parenthesis, pop the stack writing symbols until we encounter the left parenthesis. push) push) push2) push3) push8) push3) For any other symbol,, ), pop entries and write them until we find an entry with lower priority. After popping, push the symbol onto the stack. Exception: can only be removed when finding a ). When the end of the input is reached, all symbols in the stack are popped and written onto the output. Containers: Stacks Dept. CS, UPC 7 Containers: Stacks Dept. CS, UPC 8

a b c d e f ) g Output a b c d e f ) g a b a a b c a a b c a b Containers: Stacks Dept. CS, UPC 9 a b c d e f ) g a b c Containers: Stacks Dept. CS, UPC 10 a b c d e f ) g a b c d a b c d a b c d e a b c d e Containers: Stacks Dept. CS, UPC 11 a b c d e f a b c d e f a b c d e f a b c d e f g Containers: Stacks Dept. CS, UPC 12

a b c d e f ) g head top A B C a b c d e f g pushx) Complexity: On) head top X A B C Suggested exercise: Add substraction same priority as addition) and division same priority as multiplication). head empty stack) Containers: Stacks Dept. CS, UPC 13 Containers: Stacks Dept. CS, UPC 14 template <typename Type> class Stack { private: // The internal cell to represent a node struct Node { Type elem; // Data Node next; // pointer to the next element ; ; Node head; // Pointer to the top of the stack int n; // Number of elements int size) const { return n; bool empty) const { return size) == 0; // or also head == nullptr void pushconst Type& x) { head = new Node{x, head; n; void pop) { assertnot empty)); Node old = head; head = head->next; delete old; --n; // Returns a copy Type top) const { assertnot empty)); return head->elem; // Returns a reference Type& top) { assertnot empty)); return head->elem; // Returns a const reference const Type& top) const { assertnot empty)); return head->elem; Containers: Stacks Dept. CS, UPC 1 Containers: Stacks Dept. CS, UPC 1

: usage Stack<Person> S; // Empty stack Person p MyName, myage); S.pushp); Person q1 = S.top); // Makes a copy Person& q2 = S.top); // Ref to the top const Person& q3 = S.top); // Const ref to the top q1.name = newname ; // Only local copy modified q2.name = newname ; // Top of the stack modified q3.name = newname ; // Illegal q3 is const) q2 = q1; // Illegal: references cannot be modified private: // Recursive copy of the elements. // Exercise: design an iterative version. Node copynode p) { if p) return new Node{p->elem, copyp->next); else return nullptr; // Recursive deallocation of the elements void freenode p) { if p) { freep->next); delete p; Containers: Stacks Dept. CS, UPC 17 // Default constructor empty stack) Stack) : headnullptr), n0) { // Copy constructor Stackconst Stack& s) : headcopys.head)), ns.n) { // Assignment constructor Stack& operator= const Stack& s) { if &s!= this) { // Make a new copy only if different freehead); head = copys.head); n = s.n; return this; // Must return a ref to the object // Destructor ~Stack) { freehead); Containers: Stacks Dept. CS, UPC 18 Assertions vs. error handling Assertions: Runtime checks of properties e.g., invariants, pre-/post-conditions). Useful to detect internal errors. They should always hold in a bug-free program. They should give meaningful error messages to the programmers. Error handling: Detect improper use of the program e.g., incorrect input data). The program should not halt unexpectedly. They should give meaningful error messages to the users. Containers: Stacks Dept. CS, UPC 19 Containers: Stacks Dept. CS, UPC 20

Assertions vs. error handling assert x >= 0); double y = sqrtx); assert i >= 0 and i < A.size)); int v = A[i]; assert p!= nullptr); int n = p->number; string id; cin >> id; if isdigitname[0])) { cerr << Invalid identifier << endl; return false; Containers: Stacks Dept. CS, UPC 21