Stacks and Queues. 2 3 Runtime Efficiency efficiency: measure of computing resources used by code. can be relative to speed (time), memory (space), etc.

Slides:



Advertisements
Similar presentations
Stack & Queues COP 3502.
Advertisements

Building Java Programs Chapter 14
COMPSCI 105 S Principles of Computer Science 13 Stacks.
Stacks, Queues, and Deques. 2 A stack is a last in, first out (LIFO) data structure Items are removed from a stack in the reverse order from the way they.
CS 206 Introduction to Computer Science II 03 / 04 / 2009 Instructor: Michael Eckmann.
ADT Stacks and Queues. Stack: Logical Level “An ordered group of homogeneous items or elements in which items are added and removed from only one end.”
Elementary Data Structures CS 110: Data Structures and Algorithms First Semester,
CS Data Structures II Review COSC 2006 April 14, 2017
Unit 11 1 Unit 11: Data Structures H We explore some simple techniques for organizing and managing information H This unit focuses on: Abstract Data Types.
CHAPTER 6 Stacks Array Implementation. 2 Stacks A stack is a linear collection whose elements are added and removed from one end The last element to be.
CHAPTER 6 Stacks. 2 A stack is a linear collection whose elements are added and removed from one end The last element to be put on the stack is the first.
TCSS 342, Winter 2005 Lecture Notes
Building Java Programs
CSE 143 Lecture 7 Stacks and Queues reading: Stuart Reges notes on website slides created by Marty Stepp
Building Java Programs
Building Java Programs
ADT Stacks and Queues. Stack: Logical Level “An ordered group of homogeneous items or elements in which items are added and removed from only one end.”
CSE 373 Data Structures and Algorithms Lecture 2: Queues.
CSE 143 Lecture 7 Stacks and Queues reading: "Appendix Q" (see course website) slides created by Marty Stepp and Hélène Martin
Topic 3 The Stack ADT.
Week7 Stack Data Structures & Algorithms. Introduction to Stacks and Queues Widely used data structures Ordered List of element Easy to implement Easy.
CHAPTER 05 Compiled by: Dr. Mohammad Omar Alhawarat Stacks & Queues.
CSE 143 Lecture 5 Stacks and Queues slides created by Marty Stepp
Adapted from instructor resources Nyhoff, ADTs, Data Structures and Problem Solving with C++, Second Edition, © 2005 Pearson Education, Inc. All rights.
CSE 143 Lecture 9 Interfaces; Stacks and Queues slides created by Marty Stepp
Stacks and Queues Pepper. Why History Simplicity Operating Systems – Function Call Stack.
Some Other Collections: Bags, Sets, Queues and Maps COMP T2 Lecture 4 School of Engineering and Computer Science, Victoria University of Wellington.
1 Chapter 7 Stacks and Queues. 2 Stack ADT Recall that ADT is abstract data type, a set of data and a set of operations that act upon the data. In a stack,
CSE 373: Data Structures and Algorithms Lecture 1: Introduction; ADTs; Stacks; Eclipse.
30 May Stacks (5.1) CSE 2011 Winter Stacks2 Abstract Data Types (ADTs) An abstract data type (ADT) is an abstraction of a data structure An.
1 Chapter 20 Lists, Stacks, Queues Lecture 7 Dr. Musab Zghoul برمجة هيكلية.
Stacks And Queues Chapter 18.
1 Linked-list, stack and queue. 2 Outline Abstract Data Type (ADT)‏ Linked list Stack Queue.
18-1 Queues Data Structures and Design with Java and JUnit © Rick Mercer.
CSE 373: Data Structures and Algorithms Lecture 2: Queues.
CSE 373 Data Structures and Algorithms Lecture 1: Introduction; ADTs; Stacks; Eclipse.
M180: Data Structures & Algorithms in Java Stacks Arab Open University 1.
Click to edit Master text styles Stacks Data Structure.
Stacks and Queues. 2 Abstract Data Types (ADTs) abstract data type (ADT): A specification of a collection of data and the operations that can be performed.
Building Java Programs
Stacks and Queues.
CSE 373: Data Structures and Algorithms
Stacks and Queues.
CSE 373: Data Structures and Algorithms
Stacks and Queues.
Building Java Programs Chapter 14
Building Java Programs
Stacks and Queues.
Building Java Programs
Stacks and queues.
Building Java Programs Chapter 14
Lecture 2: Implementing ADTs
Stacks and Queues.
slides created by Marty Stepp
Words exercise Write code to read a file and display its words in reverse order. A solution that uses an array: String[] allWords = new String[1000]; int.
Building Java Programs
Building Java Programs
Building Java Programs Chapter 14
Stacks and Queues CLRS, Section 10.1.
slides created by Alyssa Harding
CSE 143 Lecture 8 More Stacks and Queues; Complexity (Big-Oh)
slides created by Marty Stepp
Based on slides by Alyssa Harding & Marty Stepp
More Data Structures (Part 1)
CSE 143 Lecture 8 More Stacks and Queues; Complexity (Big-Oh)
Lecture 2: Stacks and Queues
slides created by Alyssa Harding
Generics, Stack, Queue Based on slides by Alyssa Harding
slides created by Marty Stepp
Stacks and Queues.
Presentation transcript:

Stacks and Queues

2

3 Runtime Efficiency efficiency: measure of computing resources used by code. can be relative to speed (time), memory (space), etc. most commonly refers to run time Assume the following: Any single Java statement takes same amount of time to run. A method call's runtime is measured by the total of the statements inside the method's body. A loop's runtime, if the loop repeats N times, is N times the runtime of the statements in its body.

4 Collection Efficiency MethodArray add add( index, value ) indexOf get remove set size Efficiency of an array: Which operations are the least efficient? Method add O(1) add( index, value ) O(N) indexOf O(N) get O(1) remove O(N) set O(1) size O(1)

5 Collection Efficiency MethodLinked List add add( index, value ) indexOf get remove set size Efficiency of a linked list: Which operations are the least efficient? Method add O(1) add( index, value ) O(N) indexOf O(N) get O(1) remove O(N) set O(1) size O(1)

6 Stacks and Queues Some collections are constrained so clients can only use optimized operations stack: retrieves elements in reverse order as added queue: retrieves elements in same order as added stack queue top3 2 bottom1 pop, peek push frontback 123 enqueue dequeue, first

7 Abstract Data Types (ADTs) abstract data type (ADT): A specification of a collection of data and the operations that can be performed on it. Describes what a collection does, not how it does it We don't know exactly how a stack or queue is implemented, and we don't need to. We just need to understand the idea of the collection and what operations it can perform. Stacks usually implemented with arrays Queues often implemented with a linked list

8 Stacks stack: A collection based on the principle of adding elements and retrieving them in the opposite order. Last-In, First-Out ("LIFO") Elements are stored in order of insertion. We do not think of them as having indexes. Client can only add/remove/examine the last element added (the "top"). basic stack operations: push: Add an element to the top. pop: Remove the top element. peek: Examine the top element. stack top3 2 bottom1 pop, peek push

9 Stacks in Computer Science Programming languages and compilers: method calls are placed onto a stack call=push return=pop compilers use stacks to evaluate expressions Matching up related pairs of things: find out whether a string is a palindrome examine a file to see if its braces { } match convert "infix" expressions to pre/postfix Sophisticated algorithms: searching through a maze with "backtracking" many programs use an "undo stack" of previous operations

10 Java Stack Class Stack s = new Stack (); s.push("a"); s.push("b"); s.push("c"); // bottom ["a", "b", "c"] top System.out.println(s.pop()); // "c" Stack has other methods that are off-limits (not efficient) Stack () constructs a new stack with elements of type E push( value ) places given value on top of stack pop() removes top value from stack and returns it; throws EmptyStackException if stack is empty peek() returns top value from stack without removing it; throws EmptyStackException if stack is empty size() returns number of elements in stack isEmpty() returns true if stack has no elements

11 Collections of Primitives The type parameter specified when creating a collection (e.g. ArrayList, Stack, Queue ) must be an object type // illegal -- int cannot be a type parameter Stack s = new Stack (); ArrayList list = new ArrayList (); Primitive types need to be "wrapped" in objects // creates a stack of ints Stack s = new Stack ();

12 Wrapper Classes Wrapper objects have a single field of a primitive type The collection can be used with familiar primitives: ArrayList grades = new ArrayList (); grades.add(3.2); grades.add(2.7);... double myGrade = grades.get(0); Primitive TypeWrapper Type int Integer double Double char Character boolean Boolean

13 Stack Limitations You cannot loop over a stack in the usual way. Stack s = new Stack ();... for (int i = 0; i < s.size(); i++) { do something with s.get(i); } Instead, pop each element until the stack is empty. // process (and destroy) an entire stack while (!s.isEmpty()) { do something with s.pop(); }

14 What happened to my stack? Suppose we're asked to write a method max that accepts a Stack of Integers and returns the largest Integer in the stack: // Precondition: !s.isEmpty() public static void max(Stack s) { int maxValue = s.pop(); while (!s.isEmpty()) { int next = s.pop(); maxValue = Math.max(maxValue, next); } return maxValue; } The algorithm is correct, but what is wrong with the code?

15 What happened to my stack? The code destroys the stack in figuring out its answer. To fix this, you must save and restore the stack's contents: public static void max(Stack s) { Stack backup = new Stack (); int maxValue = s.pop(); backup.push(maxValue); while (!s.isEmpty()) { int next = s.pop(); backup.push(next); maxValue = Math.max(maxValue, next); } while (!backup.isEmpty()) { // restore s.push(backup.pop()); } return maxValue; }

16 Queues queue: Retrieves elements in the order they were added. First-In, First-Out ("FIFO") Elements are stored in order of insertion but don't have indexes. Client can only add to the end of the queue, and can only examine/remove the front of the queue. Basic queue operations: enqueue (add): Add an element to the back. dequeue (remove): Remove the front element. first: Examine the front element. queue frontback 123 enqueue dequeue, first

17 Queues in Computer Science Operating systems: queue of print jobs to send to the printer queue of programs / processes to be run queue of network data packets to send Programming: modeling a line of customers or clients storing a queue of computations to be performed in order Real world examples: people on an escalator or waiting in a line cars at a gas station (or on an assembly line)

18 Java Queue Interface Queue q = new LinkedList (); q.add(42); q.add(-3); q.add(17); // front [42, -3, 17] back System.out.println(q.remove()); // 42 IMPORTANT: When constructing a queue, you must use a new LinkedList object instead of a new Queue object. Because Queue is an interface. add( value ) places given value at back of queue remove() removes value from front of queue and returns it; throws a NoSuchElementException if queue is empty peek() returns front value from queue without removing it; returns null if queue is empty size() returns number of elements in queue isEmpty() returns true if queue has no elements

19 Using Queues As with stacks, must pull contents out of queue to view them. // process (and destroy) an entire queue while (!q.isEmpty()) { do something with q.remove(); } To examine each element exactly once. int size = q.size(); for (int i = 0; i < size; i++) { do something with q.remove(); (including possibly re-adding it to the queue) } Why do we need the size variable?

20 Mixing Stacks and Queues We often mix stacks and queues to achieve certain effects. Example: Reverse the order of the elements of a queue. Queue q = new LinkedList (); q.add(1); q.add(2); q.add(3); // [1, 2, 3] Stack s = new Stack (); while (!q.isEmpty()) { // Q -> S s.push(q.remove()); } while (!s.isEmpty()) { // S -> Q q.add(s.pop()); } System.out.println(q); // [3, 2, 1]

21 Exercises Write a method stutter that accepts a queue of Integers as a parameter and replaces every element of the queue with two copies of that element. [1, 2, 3] becomes [1, 1, 2, 2, 3, 3] Write a method mirror that accepts a queue of Strings as a parameter and appends the queue's contents to itself in reverse order. [a, b, c] becomes [a, b, c, c, b, a]