Abstract Data Types 1

Similar documents
Abstract Data Types 1

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

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

List, Stack, and Queues

Purpose of Review. Review some basic C++ Familiarize us with Weiss s style Introduce specific constructs useful for implementing data structures

Queue Implementations

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

Programming Abstractions

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

Discussion 2C Notes (Week 3, January 21) TA: Brian Choi Section Webpage:

Dynamic Data Structures

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

Chapter 18: Stacks And Queues

Chapter 17: Linked Lists

CS350 - Exam 1 (100 Points)

1 P age DS & OOPS / UNIT II

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

Wentworth Institute of Technology COMP201 Computer Science II Spring 2015 Derbinsky. Stacks and Queues. Lecture 11.

Chapter 17: Linked Lists

Chapter 18: Stacks And Queues

CPSC 260 Data Structures and Algorithms for Computer Engineers Linked Lists!

MULTIMEDIA COLLEGE JALAN GURNEY KIRI KUALA LUMPUR

DATA STRUCTURES AND ALGORITHMS LECTURE 08 QUEUES IMRAN IHSAN ASSISTANT PROFESSOR AIR UNIVERSITY, ISLAMABAD

DataStruct 5. Stacks, Queues, and Deques

Standard Template Library

Chapter 18: Stacks And Queues. Pearson Education, Inc. Publishing as Pearson Addison-Wesley

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

DHANALAKSHMI COLLEGE OF ENGINEERING DEPARTMENT OF COMPUTER SCIENCE AND ENGINEERING EC6301 OBJECT ORIENTED PROGRAMMING AND DATA STRUCTURES

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

Top of the Stack. Stack ADT

CSCI-1200 Computer Science II Spring 2006 Test 3 Practice Problem Solutions

STACKS AND QUEUES. Problem Solving with Computers-II

Cpt S 122 Data Structures. Course Review FINAL. Nirmalya Roy School of Electrical Engineering and Computer Science Washington State University

Top of the Stack. Stack ADT

1 Short Answer (7 Points Each)

Linked Lists. Linked list: a collection of items (nodes) containing two components: Data Address (link) of the next node in the list

ADTs: Stacks and Queues

Linked Lists. Linked list: a collection of items (nodes) containing two components: Data Address (link) of the next node in the list

Programming Abstractions

DATA STRUCTURE UNIT I

CMSC 341. Linked Lists, Stacks and Queues. CMSC 341 Lists, Stacks &Queues 1

8. Fundamental Data Structures

Unit 4 Basic Collections

CS24 Week 4 Lecture 2

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

A linear structure is an ordered (e.g., sequenced) arrangement of elements.

Doubly-Linked Lists

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

CMSC 341. Deques, Stacks and Queues 9/22/04 1

Templates and Vectors

Largest Online Community of VU Students

811312A Data Structures and Algorithms, , Exercise 1 Solutions

Sequential Containers Cont'd

16. Dynamic Data Structures

Programming. Lists, Stacks, Queues

The Stack and Queue Types

EEE2020 Data Structures and Algorithms Abstract Data Types: Stacks and Queues

CS 216 Exam 1 Fall SOLUTION

Name: 1 stack<int> s; 2 s.push(9) 3 s.push(5) 4 s.push(10) 5 s.push(1) 6 s.pop() 7 s.pop() 8 s.push(0) 9 s.pop() 10 s.pop() 11 s.

Stacks, Queues (cont d)

University of Illinois at Urbana-Champaign Department of Computer Science. First Examination

CSCI-1200 Data Structures Fall 2017 Lecture 10 Vector Iterators & Linked Lists

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

University of Illinois at Urbana-Champaign Department of Computer Science. First Examination

CSC 222: Computer Programming II. Spring 2004

Object Oriented Programming COP3330 / CGS5409

CSCI-1200 Data Structures Fall 2010 Lecture 8 Iterators

Largest Online Community of VU Students


CSCI-1200 Data Structures Fall 2014 Lecture 8 Iterators

MID TERM MEGA FILE SOLVED BY VU HELPER Which one of the following statement is NOT correct.

Revision Statement while return growth rate asymptotic notation complexity Compare algorithms Linear search Binary search Preconditions: sorted,

Sequential Containers Cont'd

Programming Abstractions

ECE Spring 2018 Problem Set #0 Due: 1/30/18

How can we improve this? Queues 6. Topological ordering: given a sequence of. should occur prior to b, provide a schedule. Queues 5.

CS197c: Programming in C++

University of Illinois at Urbana-Champaign Department of Computer Science. First Examination

CSCI-1200 Data Structures Spring 2018 Lecture 10 Vector Iterators & Linked Lists

Stacks and their Applications

Loop Invariants. while!done do // what is true at every step // Update/iterate // maintain invariant od CPS

Lecture Data Structure Stack

CS 206 Introduction to Computer Science II

list<t>::const_iterator it1 = lst.begin(); // points to first element list<t>::const_iterator it2 = lst.begin(); // points to second element it2++;

DNHI Homework 3 Solutions List, Stacs and Queues

MIDTERM EXAMINATION Spring 2010 CS301- Data Structures

Linked List using a Sentinel

the Queue queue ADT using the STL queue designing the simulation simulation with STL queue using STL list as queue using STL vector as queue

Data Structures and Algorithms

CPSC 221: Algorithms and Data Structures Lecture #1: Stacks and Queues

PA3 Design Specification

University of Waterloo Department of Electrical and Computer Engineering ECE 250 Data Structures and Algorithms. Final Examination

DATA STRUCUTRES. A data structure is a particular way of storing and organizing data in a computer so that it can be used efficiently.

CPSC 221: Algorithms and Data Structures ADTs, Stacks, and Queues

More Group HW. #ifndef Stackh #define Stackh. #include <cstdlib> using namespace std;

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

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)

CSI33 Data Structures

STL Standard Template Library

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

Transcription:

Abstract Data Types 1

Purpose Abstract Data Types (ADTs) Lists Stacks Queues 2

Primitive vs. Abstract Data Types Primitive DT: programmer ADT: programmer Interface (API) data Implementation (methods) Data 3

Abstract Data Types (ADTs) ADT is a set of objects together with a set of operations. Abstract in that implementation of operations not specified in ADT definition E.g., List Insert, delete, search, sort C++ class perfect for ADTs Can change ADT implementation details without breaking code using ADT 4

The List ADT List of size N: A 0, A 1,, A N-1 Each element A k has a unique position k in the list Elements can be arbitrarily complex Operations insert(x,k), remove(k), find(x), findkth(k), printlist() 5

Stack ADT Stack is a list where insert and remove take place only at the top Operations Push (insert) element on top of stack Pop (remove) element from top of stack Top: return element at top of stack LIFO (Last In First Out) 6

Queue ADT Queue is a list where insert takes place at the back, but remove takes place at the front Operations Enqueue (insert) element at the back of the queue Dequeue (remove and return) element from the front of the queue FIFO (First In First Out) Dequeue here 5 7 2 6 3 2 8 Enque here front back 7

Lists Using Arrays Operations insert(x,k) O(N) remove(k) O(N) find(x) O(N) findkth(k) O(1) printlist() O(N) 8

Linked Lists Elements not stored in contiguous memory Nodes in list consist of data element and next pointer node data next pointer null 9

Linked Lists Operations Insert(X,A) O(1) Remove(A) O(1) 10

Linked Lists Operations find(x) O(N) findkth(k) O(N) printlist() O(N) 11

Doubly-Linked List Singly-linked list insert(x,a) and remove(x) require pointer to node just before X Doubly-linked list Also keep pointer to previous node prev next 12

Doubly-Linked List Insert(X,A) Remove(X) newa = new Node(A); newa->prev = X->prev; newa->next = X; X->prev->next = newa; X->prev = newa; X->prev->next = X->next; X->next->prev = X->prev; Problems with operations at ends of list 13

Sentinel Nodes Dummy head and tail nodes to avoid special cases at ends of list Doubly-linked list with sentinel nodes Empty doubly-linked list with sentinel nodes 14

C++ Standard Template Library (STL) Implementation of common data structures List, stack, queue, Generally called containers WWW resources www.sgi.com/tech/stl/ www.cppreference.com/cppstl.html 15

Lists using STL vector<object> Array-based implementation findkth O(1) insert and remove O(N) Unless change at end of vector list<object> Doubly-linked list with sentinel nodes findkth O(N) insert and remove O(1) If position of change is known Both require O(N) for search 16

Container Methods int size() const Return number of elements in container void clear() Remove all elements from container bool empty() Return true is container has no elements, otherwise returns false 17

Vector and List Methods void push_back (const Object & x) Add x to end of list void pop_back () Remove object at end of list const Object & back () const Return object at end of list const Object & front () const Return object at front of list 18

List-only Methods void push_front (const Object & x) Add x to front of list void pop_front () Remove object at front of list 19

Vector-only Methods Object & operator[] (int idx) Return object at index idx in vector with no bounds-checking Object & at (int idx) Return object at index idx in vector with boundschecking int capacity () const Return internal capacity of vector void reserve (int newcapacity) Set new capacity for vector (avoid expansion) 20

Iterators Represents position in container Getting an iterator iterator begin () Return appropriate iterator representing first item in container iterator end () Return appropriate iterator representing end marker in container Position after last item in container 21

Iterator Methods itr++ and ++itr Advance iterator itr to next location *itr Return reference to object stored at iterator itr s location itr1 == itr2 Return true if itr1 and itr2 refer to same location; otherwise return false itr1!= itr2 Return true if itr1 and itr2 refer to different locations; otherwise return false 22

Example: printlist template <typename Container> void printlist (const Container & lst) { for (typename Container::const_iterator itr = lst.begin(); itr!= lst.end(); ++itr) { cout << *itr << endl; } } 23

Constant Iterators iterator begin () const_iterator begin () const iterator end () const_iterator end () const Appropriate version above returned based on whether container is const If const_iterator used, then *itr cannot appear on left-hand side of assignment (e.g., *itr=0 ) 24

Better printlist 25

Container Operations Requiring Iterators iterator insert (iterator pos, const Object & x) Add x into list, prior to position given by iterator pos Return iterator representing position of inserted item O(1) for lists, O(N) for vectors iterator erase (iterator pos) Remove object whose position is given by iterator pos Return iterator representing position of item following pos This operation invalidates pos O(1) for lists, O(N) for vectors iterator erase (iterator start, iterator end) Remove all items beginning at position start, up to, but not including end 26

Implementation of Vector copy constructor destructor operator= 27

Implementation of Vector Automatic resize 28

Implementation of Vector Iterators (implemented using simple pointers) Iterator methods Is it always safe? 29

Implementation of List Iterators implemented using nested class 30

Implementation of List 31

Implementation of List Empty list 32

Implementation of List Allows inheriting classes to access these. Gives List class access to constructor. 33

Implementation of List 34

Implementation of List 35

Implementation of List 36

Implementation of List 37

Stack ADT Stack is a list where insert and remove take place only at the top Operations Push (insert) element on top of stack Pop (remove) element from top of stack Top: return element at top of stack LIFO (Last In First Out) 38

Stack Implementation Linked List template <typename Object> class stack { public: stack () {} void push (Object & x) {? s.push_front (x); } void pop () {? s.pop_front (); } Object & top () {? s.front (); } private: list<object> s; } Vector template <typename Object> class stack { public: stack () {} void push (Object & x) { s.push_back? (x); } void pop () { s.pop_back? (); } Object & top () { s.back? (); } private: vector<object> s; } 39

Stack Implementation Linked List template <typename Object> class stack { public: stack () {} void push (Object & x) {? s.push_front (x); } void pop () {? s.pop_front (); } Object & top () {? s.front (); } private: list<object> s; } Vector template <typename Object> class stack { public: stack () {} void push (Object & x) { s.push_back (x); } void pop () { s.pop_back (); } Object & top () { s.back (); } private: vector<object> s; } 40

Stack Implementation Linked List template <typename Object> class stack { public: stack () {} void push (Object & x) { s.push_front (x); } void pop () { s.pop_front (); } Object & top () { s.front (); } private: list<object> s; } Vector template <typename Object> class stack { public: stack () {} void push (Object & x) { s.push_back (x); } void pop () { s.pop_back (); } Object & top () { s.back (); } private: vector<object> s; } Running Times? 41

C++ STL Stack Class Methods Push, pop, top Empty, size #include <stack> stack<int> s; for (int i = 0; i < 5; i++ ) { s.push(i); } while (!s.empty()) { cout << s.top() << endl; s.pop(); } 42

Stack Applications Balancing symbols: ((()())(())) stack<char> s; while not end of file { read character c if c = ( then s.push(c) if c = ) then if s.empty() then error else s.pop() } if (! s.empty()) then error else okay 43

Stack Applications Postfix expressions 1 2 * 3 + 4 5 * + Means ((1 * 2) + 3) + (4 * 5) HP calculators Unambiguous (no need for paranthesis) Infix needs paranthesis or else implicit precedence specification to avoid ambiguity E.g., try a+(b*c) and (a+b)*c Postfix evaluation uses stack Class PostFixCalculator { public:... void Multiply () { int i1 = s.top(); s.pop(); int i2 = s.top(); s.pop(); s.push (i1 * i2); } private: stack<int> s; } 44

Stack Applications Function calls Programming languages use stacks to keep track of function calls When a function call occurs Push CPU registers and program counter on to stack ( activation record or stack frame ) Upon return, restore registers and program counter from top stack frame and pop 45

Queue ADT Queue is a list where insert takes place at the back, but remove takes place at the front Operations Enqueue (insert) element at the back of the queue Dequeue (remove and return) element from the front of the queue FIFO (First In First Out) Dequeue here 5 7 2 6 3 2 8 Enque here front back 46

Queue Implementation Linked List Vector (?) template <typename Object> class queue { public: queue () {} void enqueue (Object & x) { q.push_back (x); } Object & dequeue () { Object & x = q.front (); q.pop_front (); return x; } private: list<object> q; } Running time? 47

C++ STL Queue Class Methods Push (at back) Pop (from front) Back, front Empty, size #include <queue> queue<int> q; for (int i = 0; i < 5; i++ ) { q.push(i); } while (!q.empty()) { cout << q.front() << endl; q.pop(); } 48

Queue Applications Job scheduling Priority queues Graph traversals Queuing theory 49

Summary Abstract Data Types (ADTs) Linked list Stack Queue C++ Standard Template Library (STL) Numerous applications Building blocks for more complex data structures 50