Stacks and queues. Algorithms and Data Structures, Fall 2011. Rasmus Pagh. Based on slides by Kevin Wayne, Princeton



Similar documents
Collaboration policy. Where to get help (but no code in ) Office hours Lab TAs in Friend 008/009 Bounce ideas (but not code) off classmates

Stacks. Data Structures and Data Types. Collections

API for java.util.iterator. ! hasnext() Are there more items in the list? ! next() Return the next item in the list.

D06 PROGRAMMING with JAVA

Linked Lists, Stacks, Queues, Deques. It s time for a chainge!

Module 2 Stacks and Queues: Abstract Data Types

Common Data Structures

Course: Programming II - Abstract Data Types. The ADT Stack. A stack. The ADT Stack and Recursion Slide Number 1

Chapter 3: Restricted Structures Page 1

Data Structures and Algorithms

7.1 Our Current Model

Queues and Stacks. Atul Prakash Downey: Chapter 15 and 16

This lecture. Abstract data types Stacks Queues. ADTs, Stacks, Queues Goodrich, Tamassia

Queues Outline and Required Reading: Queues ( 4.2 except 4.2.4) COSC 2011, Fall 2003, Section A Instructor: N. Vlajic

1. The memory address of the first element of an array is called A. floor address B. foundation addressc. first address D.

10CS35: Data Structures Using C

Sequential Data Structures

CHAPTER 4 ESSENTIAL DATA STRUCTRURES

DATA STRUCTURES USING C

CSE373: Data Structures and Algorithms Lecture 1: Introduction; ADTs; Stacks/Queues. Linda Shapiro Spring 2016

Programming with Data Structures

Class Overview. CSE 326: Data Structures. Goals. Goals. Data Structures. Goals. Introduction

Introduction to Stacks

Universidad Carlos III de Madrid

CmpSci 187: Programming with Data Structures Spring 2015

Last not not Last Last Next! Next! Line Line Forms Forms Here Here Last In, First Out Last In, First Out not Last Next! Call stack: Worst line ever!

Algorithms and Data Structures

What is a Stack? Stacks and Queues. Stack Abstract Data Type. Java Interface for Stack ADT. Array-based Implementation

STACKS,QUEUES, AND LINKED LISTS

22c:31 Algorithms. Ch3: Data Structures. Hantao Zhang Computer Science Department

1) The postfix expression for the infix expression A+B*(C+D)/F+D*E is ABCD+*F/DE*++

Lecture 15: Linked Structures

Outline. Computer Science 331. Stack ADT. Definition of a Stack ADT. Stacks. Parenthesis Matching. Mike Jacobson

Data Structures and Algorithms Stacks and Queues

Data Structures in the Java API

Questions 1 through 25 are worth 2 points each. Choose one best answer for each.

Java Collection Framework hierarchy. What is Data Structure? Chapter 20 Lists, Stacks, Queues, and Priority Queues

Stacks. Stacks (and Queues) Stacks. q Stack: what is it? q ADT. q Applications. q Implementation(s) CSCU9A3 1

LINKED DATA STRUCTURES

AP Computer Science AB Syllabus 1

Class 32: The Java Collections Framework

Basic Programming and PC Skills: Basic Programming and PC Skills:

QUEUES. Primitive Queue operations. enqueue (q, x): inserts item x at the rear of the queue q

Masters programmes in Computer Science and Information Systems. Object-Oriented Design and Programming. Sample module entry test xxth December 2013

Collections in Java. Arrays. Iterators. Collections (also called containers) Has special language support. Iterator (i) Collection (i) Set (i),

DATA STRUCTURE - QUEUE

Analysis of a Search Algorithm

Stack Allocation. Run-Time Data Structures. Static Structures

Linked Lists Linked Lists, Queues, and Stacks

Abstract Data Type. EECS 281: Data Structures and Algorithms. The Foundation: Data Structures and Abstract Data Types

Course: Programming II - Abstract Data Types. The ADT Queue. (Bobby, Joe, Sue, Ellen) Add(Ellen) Delete( ) The ADT Queues Slide Number 1

Introduction to Data Structures

CSE 2123 Collections: Sets and Iterators (Hash functions and Trees) Jeremy Morris

Data Structures and Algorithms Lists

DATA STRUCTURE - STACK

14 Stacks, Queues, And Linked Lists

Stacks. Linear data structures

Data Structure [Question Bank]

Datastrukturer och standardalgoritmer i Java

CS 111 Classes I 1. Software Organization View to this point:

Data Structures and Data Manipulation

Lecture Notes on Binary Search Trees

UIL Computer Science for Dummies by Jake Warren and works from Mr. Fleming

dictionary find definition word definition book index find relevant pages term list of page numbers

System Software Prof. Dr. H. Mössenböck

MAX = 5 Current = 0 'This will declare an array with 5 elements. Inserting a Value onto the Stack (Push)

Java Interview Questions and Answers

Chapter 8: Bags and Sets

Moving from CS 61A Scheme to CS 61B Java

KITES TECHNOLOGY COURSE MODULE (C, C++, DS)

CS104: Data Structures and Object-Oriented Design (Fall 2013) October 24, 2013: Priority Queues Scribes: CS 104 Teaching Team

Krishna Institute of Engineering & Technology, Ghaziabad Department of Computer Application MCA-213 : DATA STRUCTURES USING C

St S a t ck a ck nd Qu Q eue 1

Free Java textbook available online. Introduction to the Java programming language. Compilation. A simple java program

recursion, O(n), linked lists 6/14

Free Java textbook available online. Introduction to the Java programming language. Compilation. A simple java program

cs2010: algorithms and data structures

Data Structures Using C++ 2E. Chapter 5 Linked Lists

Cpt S 223. School of EECS, WSU

Data storage Tree indexes

The Tower of Hanoi. Recursion Solution. Recursive Function. Time Complexity. Recursive Thinking. Why Recursion? n! = n* (n-1)!

Introduction to Programming System Design. CSCI 455x (4 Units)

Quiz 4 Solutions EECS 211: FUNDAMENTALS OF COMPUTER PROGRAMMING II. 1 Q u i z 4 S o l u t i o n s

Introduction to Data Structures and Algorithms

PES Institute of Technology-BSC QUESTION BANK

1.4 Arrays Introduction to Programming in Java: An Interdisciplinary Approach Robert Sedgewick and Kevin Wayne Copyright /6/11 12:33 PM!

Lecture 12 Doubly Linked Lists (with Recursion)

Algorithms and Data S tructures Structures Stack, Queues, and Applications Applications Ulf Leser

Recursion. Definition: o A procedure or function that calls itself, directly or indirectly, is said to be recursive.

Hash Tables. Computer Science E-119 Harvard Extension School Fall 2012 David G. Sullivan, Ph.D. Data Dictionary Revisited

Generic Types in Java. Example. Another Example. Type Casting. An Aside: Autoboxing 4/16/2013 GENERIC TYPES AND THE JAVA COLLECTIONS FRAMEWORK.

Home Page. Data Structures. Title Page. Page 1 of 24. Go Back. Full Screen. Close. Quit

Abstract Data Types. Chapter 2

A binary search tree or BST is a binary tree that is either empty or in which the data element of each node has a key, and:

Object Oriented Software Design

Iterators. Provides a way to access elements of an aggregate object sequentially without exposing its underlying representation.

1.00 Lecture 35. Data Structures: Introduction Stacks, Queues. Reading for next time: Big Java: Data Structures

CMSC 202H. ArrayList, Multidimensional Arrays

Computer Programming I

Arrays. Atul Prakash Readings: Chapter 10, Downey Sun s Java tutorial on Arrays:

Transcription:

Algorithms and Data Structures, Fall 2011 Stacks and queues Rasmus Pagh Based on slides by Kevin Wayne, Princeton Algorithms, 4 th Edition Robert Sedgewick and Kevin Wayne Copyright 2002 2011

Stacks and queues Fundamental data types. Values: sets of objects. Operations: insert, remove, test if empty. Intent is clear when we insert. Which item do we remove? Stack. Remove the item most recently added. Analogy. Cafeteria trays, Web surfing. Queue. Remove the item least recently added. Analogy. Line in the canteen. LIFO = "last in first out" FIFO = "first in first out" push pop enqueue dequeue 2

Client, implementation, interface Separate interface and implementation. Ex: stack, queue, priority queue, symbol table, union-find,. Benefits. Client can't know details of implementation client has many implementation from which to choose. Implementation can't know details of client needs many clients can re-use the same implementation. Design: creates modular, reusable libraries. Performance: use optimized implementation where it matters. Client: program using operations defined in interface. Implementation: actual code implementing operations. Interface: description of data type, basic operations. 3

stacks resizing arrays queues generics iterators applications 4

Stack API Warmup. Stack of strings objects. push pop public class StackOfStrings StackOfStrings() create an empty stack void push(string s) insert a new item onto stack String pop() remove and return the item most recently added boolean isempty() is the stack empty? int size() number of items on the stack Challenge. Reverse sequence of strings from standard input. 5

Stack: linked-list implementation in Java public class StackOfStrings private Node first = null; private class Node String item; Node next; inner class public boolean isempty() return first == null; public void push(string item)... public String pop()... 6

Stack pop: linked-list implementation save item to return String item = first.item; delete first node first = first.next; first or be to null first or be to null return saved item return item; Removing the first node in a linked list 7

Stack push: linked-list implementation save a link to the list Node oldfirst = first; oldfirst first or be to null create a new node for the beginning first = new Node(); oldfirst first or be to null set the instance variables in the new node first.item = "not"; first.next = oldfirst; first not or be to null Inserting a new node at the beginning of a linked list 8

Stack: linked-list implementation in Java public class StackOfStrings private Node first = null; private class Node String item; Node next; public boolean isempty() return first == null; public void push(string item) Node oldfirst = first; first = new Node(); first.item = item; first.next = oldfirst; public String pop() String item = first.item; first = first.next; return item; 9

Stack: array implementation Array implementation of a stack. Use array s[] to store N items on stack. push(): add new item at s[n]. pop(): remove item from s[n-1]. s[] to be or not to be null null null null 0 1 2 3 4 5 6 7 8 9 N capacity = 10 Defect. Stack overflows when N exceeds capacity. [stay tuned] 10

Stack: array implementation public class StackOfStrings private String[] s; private int N = 0; a cheat (stay tuned) public StackOfStrings(int capacity) s = new String[capacity]; public boolean isempty() return N == 0; public void push(string item) s[n++] = item; public String pop() return s[--n]; decrement N; then use to index into array 11

Stack considerations Overflow and underflow. Underflow: throw exception if pop from an empty stack. Overflow: use resizing array for array implementation. [stay tuned] Loitering. Holding a reference to an object when it is no longer needed. public String pop() return s[--n]; loitering public String pop() String item = s[--n]; s[n] = null; return item; this version avoids "loitering": garbage collector reclaims memory only if no outstanding references Null items. We allow null items to be inserted. 12

stacks resizing arrays queues generics iterators applications 13

Stack: dynamic-array implementation Problem. Requiring client to provide capacity does not implement API! Q. How to grow and shrink array? Problem session: Think about this! (And try not to look at the next few slides.) 14

Stack: dynamic-array implementation Problem. Requiring client to provide capacity does not implement API! Q. How to grow and shrink array? First try. push(): increase size of s[] by 1. pop(): decrease size of s[] by 1. Too expensive. Need to copy all item to a new array. Inserting first N items takes time proportional to 1 + 2 + + N ~ N 2 / 2. infeasible for large N Challenge. Ensure that array resizing happens infrequently. 15

Stack: dynamic-array implementation Q. How to grow array? "repeated doubling" A. If array is full, create a new array of twice the size, and copy items. public StackOfStrings() s = new String[1]; public void push(string item) if (N == s.length) resize(2 * s.length); s[n++] = item; private void resize(int capacity) String[] copy = new String[capacity]; for (int i = 0; i < N; i++) copy[i] = s[i]; s = copy; cost of array resizing is now 2 + 4 + 8 + + N ~ 2N Consequence. Inserting first N items takes time proportional to N (not N 2 ). 16

Stack: amortized cost of adding to a stack Cost of inserting first N items. N + (2 + 4 + 8 + + N) ~ 3N. 1 array accesses per push k array accesses to double to size k 128 cost (array accesses) one gray dot for each operation 64 128 red dots give cumulative average 3 0 number of push() operations 0 128 Amortized cost of adding to a Stack 17

Stack: dynamic-array implementation Q. How to shrink array? First try. push(): double size of s[] when array is full. pop(): halve size of s[] when array is one-half full. Too expensive. "thrashing" Consider push-pop-push-pop- sequence when array is full. Takes time proportional to N per operation in worst case. N = 5 to be or not to null null null N = 4 to be or not N = 5 to be or not to null null null N = 4 to be or not 18

Stack: dynamic-array implementation Q. How to shrink array? Efficient solution. push(): double size of s[] when array is full. pop(): halve size of s[] when array is one-quarter full. public String pop() String item = s[--n]; s[n] = null; if (N > 0 && N == s.length/4) resize(s.length / 2); return item; Invariant. Array is between 25% and 100% full. 19

Stack dynamic-array implementation: performance Amortized analysis. Average running time per operation over a worst-case sequence of operations. Proposition. Starting from empty stack (with dynamic resizing), any sequence of M push and pop operations takes time proportional to M. best worst amortized construct 1 1 1 push 1 N 1 pop size 1 N 1 1 1 1 doubling and shrinking running time for doubling stack with N items 20

Stack implementations: dynamic array vs. linked List Tradeoffs. Can implement a stack with either dynamic array or linked list; save a link to the list client can use interchangeably. Which one is better? Node oldfirst = first; Linked-list implementation. first oldfirst be Every operation takes constant time to in the worst case. null Uses extra time and space to deal with the links. first = new Node(); Dynamic-array implementation. or create a new node for the beginning oldfirst Every operation takes constant amortized time. first or be Less wasted space. to null set the instance variables in the new node N = 4 first.item = "not"; first.next = oldfirst; or be to not null null null null first not or be to null Inserting a new node at the beginning of a linked list 21

stacks resizing arrays queues generics iterators applications 22

Queue API enqueue public class QueueOfStrings QueueOfStrings() create an empty queue void enqueue(string s) insert a new item onto queue String dequeue() remove and return the item least recently added boolean isempty() is the queue empty? int size() number of items on the queue dequeue 23

Queue dequeue: linked-list implementation save item to return String item = first.item; delete first node first = first.next; last first to be or null first to be last or null return saved item return item; Removing the first node in a linked list Remark. Identical code to linked-list stack pop(). 24

Queue enqueue: linked-list implementation save a link to the last node Node oldlast = last; oldlast last first to be or null create a new node for the end Node last = new Node(); last.item = "not"; last.next = null; first to be oldlast or null last not null link the new node to the end of the list oldlast.next = last; first to be oldlast or last not null Inserting a new node at the end of a linked list 25

Queue: linked-list implementation in Java public class QueueOfStrings private Node first, last; private class Node /* same as in StackOfStrings */ public boolean isempty() return first == null; public void enqueue(string item) Node oldlast = last; last = new Node(); last.item = item; last.next = null; if (isempty()) first = last; else oldlast.next = last; special cases for empty queue public String dequeue() String item = first.item; first = first.next; if (isempty()) last = null; return item; 26

Queue: dynamic array implementation Array implementation of a queue. Use array q[] to store items in queue. enqueue(): add new item at q[tail]. dequeue(): remove item from q[head]. Update head and tail modulo the capacity. Add dynamic resizing. q[] null null the best of times null null null null 0 1 2 3 4 5 6 7 8 9 head tail capacity = 10 27

stacks resizing arrays queues generics iterators applications 28

Parameterized stack We implemented: StackOfStrings. We also want: StackOfURLs, StackOfInts, StackOfVans, etc.? Attempt 1. Implement a separate stack class for each type. Rewriting code is tedious and error-prone. Maintaining cut-and-pasted code is tedious and error-prone. @#$*! most reasonable approach until Java 1.5. 29

Parameterized stack We implemented: StackOfStrings. We also want: StackOfURLs, StackOfInts, StackOfVans, etc.? Attempt 2. Implement a stack with items of type Object. Casting is required in client. Casting is error-prone: run-time error if types mismatch. StackOfObjects s = new StackOfObjects(); Apple a = new Apple(); Orange b = new Orange(); s.push(a); s.push(b); a = (Apple) (s.pop()); run-time error 30

Parameterized stack We implemented: StackOfStrings. We also want: StackOfURLs, StackOfInts, StackOfVans, etc.? Attempt 3. Java generics. Avoid casting in client. Discover type mismatch errors at compile-time instead of run-time. type parameter Stack<Apple> s = new Stack<Apple>(); Apple a = new Apple(); Orange b = new Orange(); s.push(a); s.push(b); a = s.pop(); compile-time error Guiding principles. Welcome compile-time errors; avoid run-time errors. 31

Generic stack: linked-list implementation public class LinkedStackOfStrings private Node first = null; private class Node String item; Node next; public boolean isempty() return first == null; public void push(string item) Node oldfirst = first; first = new Node(); first.item = item; first.next = oldfirst; public class Stack<Item> private Node first = null; private class Node Item item; Node next; public boolean isempty() return first == null; public void push(item item) Node oldfirst = first; first = new Node(); first.item = item; first.next = oldfirst; generic type name public String pop() String item = first.item; first = first.next; return item; public Item pop() Item item = first.item; first = first.next; return item; 32

stacks resizing arrays queues generics iterators applications 33

Iteration Design challenge. Support iteration over stack items by client, without revealing the internal representation of the stack. i N s[] it was the best of times null null null null 0 1 2 3 4 5 6 7 8 9 first current times of best the was it null Java solution. Make stack implement the Iterable interface. 34

Iterators Q. What is an Iterable? A. Has a method that returns an Iterator. Q. What is an Iterator? A. Has methods hasnext() and next(). Q. Why make data structures Iterable? A. Java supports elegant client code. Iterable interface public interface Iterable<Item> Iterator<Item> iterator(); Iterator interface public interface Iterator<Item> boolean hasnext(); Item next(); optional; use void remove(); at your own risk foreach statement for (String s : stack) StdOut.println(s); equivalent code Iterator<String> i = stack.iterator(); while (i.hasnext()) String s = i.next(); StdOut.println(s); 35

Stack iterator: linked-list implementation import java.util.iterator; public class Stack<Item> implements Iterable<Item>... public Iterator<Item> iterator() return new ListIterator(); private class ListIterator implements Iterator<Item> private Node current = first; public boolean hasnext() return current!= null; public void remove() /* not supported */ public Item next() Item item = current.item; current = current.next; return item; first current times of best the was it null 36

Stack iterator: array implementation import java.util.iterator; public class Stack<Item> implements Iterable<Item> public Iterator<Item> iterator() return new ArrayIterator(); private class ArrayIterator implements Iterator<Item> private int i = N; public boolean hasnext() return i > 0; public void remove() /* not supported */ public Item next() return s[--i]; i N s[] it was the best of times null null null null 0 1 2 3 4 5 6 7 8 9 37

stacks resizing arrays queues generics iterators APIs and applications 38

Java collections library List interface. java.util.list is API for ordered collection of items. public interface List<Item> implements Iterable<Item> List() create an empty list boolean isempty() is the list empty? int size() number of items void add(item item) append item to the end Item get(int index) return item at given index Item remove(int index) return and delete item at given index boolean contains(item item) does the list contain the given item? Iteartor<Item> iterator() iterator over all items in the list... Implementations. java.util.arraylist uses dynamic array; java.util.linkedlist uses linked list. 39

Linked lists in JDK 5.0 Class LinkedList<E>: Generic class implementing doubly linked lists. From Java API documentation All of the operations perform as could be expected for a doubly-linked list. Operations that index into the list will traverse the list from the beginning or the end, whichever is closer to the specified index. Often linked lists are implemented directly in applications for transparency or to allow special features. 40

Problem session Consider the following code fragments accessing a list A. 1. for (int i=0; i<n; i++) A.add(i); // Add to end 2. Iterator<Integer> it = A.iterator(); while (it.hasnext()) sum += it.next(); // Iterate 3. for (int i=0; i<n; i++) sum += A.get(i); // Iterate using get() 4. for (int i=0; i<n; i++) A.add(0,i); // Add to start For each of the following implementations of A, how do you predict that the running time will differ (for large n)? List<Integer> A = new LinkedList<Integer>(); List<Integer> A = new ArrayList<Integer>(); 41

Unbounded arrays in JDK 5.0 Class ArrayList<E>: Generic class implementing unbounded arrays. From Java API documentation Each ArrayList instance has a capacity. The capacity is the size of the array used to store the elements in the list. It is always at least as large as the list size. As elements are added to an ArrayList, its capacity grows automatically. The details of the growth policy are not specified beyond the fact that adding an element has constant amortized time cost. Interface RandomAccess From Java API documentation The best algorithms for manipulating random access lists (such as ArrayList) can produce quadratic behavior when applied to sequential access lists (such as LinkedList). Generic list algorithms are encouraged to check whether the given list is an instanceof this interface 42

Stack application: Function calls How a compiler implements a function. Function call: push local environment and return address. Return: pop return address and local environment. Recursive function. Function that calls itself. Note. Can always use an explicit stack to remove recursion. p = 216, q = 192 p = 192, q = 24 p = 24, q = 0 gcd (216, 192) static int gcd(int p, int q) if (q == 0) return p; else return gcd(q, gcd p % (192, q); 24) static int gcd(int p, int q) if (q == 0) return p; else return gcd(q, p gcd % (24, q); 0) static int gcd(int p, int q) if (q == 0) return p; else return gcd(q, p % q); 43

it is easy to convince yourself that it computes the proper value: any time the algo- Stack application: Arithmetic encounters expression a subexpression evaluation consisting of two operands separated by an operator, all surrounded by parentheses, it leaves the result of performing that operation on those operands on the operand stack. The result is the same as if that value Goal. Evaluate infix expressions. ( 1 + ( ( 2 + 3 ) * ( 4 * 5 ) ) ) operand Two-stack algorithm. [E. W. 101Dijkstra] Value: push onto the value stack. Operator: push onto the operator stack. Left parenthesis: ignore. Right parenthesis: pop operator and two values; push the result of applying that operator to those values onto the operand stack. Context. An interpreter! had appeared in the input instead of the subexpression, so we can think of replacing value the stack subexpression by the value to get an operator expression stack that would yield the same result. We can apply this argument again and again until we get a single value. For example, the algorithm computes the same value of all of these expressions: operator ( 1 + ( ( 2 + 3 ) * ( 4 * 5 ) ) ) ( 1 + ( 5 * ( 4 * 5 ) ) ) ( 1 + ( 5 * 20 ) ) ( 1 + 100 ) ( 1 + ( ( 2 + 3 ) * ( 4 * 5 ) ) ) + ( ( 2 + 3 ) * ( 4 * 5 ) ) ) ( ( 2 + 3 ) * ( 4 * 5 ) ) ) + 3 ) * ( 4 * 5 ) ) ) 3 ) * ( 4 * 5 ) ) ) ) * ( 4 * 5 ) ) ) * ( 4 * 5 ) ) ) ( 4 * 5 ) ) ) * 5 ) ) ) 5 ) ) ) ) ) ) Evaluate (PROGRAM 4.3.5) is an implementation of this method. This code is a simple example of an interpreter : a program that interprets the computation specified by a given string and performs the computation to arrive at the result. A compiler is a program that converts the string into code on a lower-level machine that can do the job. This conversion is a more complicated process than the stepby-step conversion used by an interpreter, but it is based on the same underlying mechanism. Initially, Java was based on using an interpreter. Now, however, the Java system includes a compiler that converts arithmetic expressions (and, more generally, Java programs) into code for the Java virtual machine, an imaginary machine that is easy to simulate on an actual computer. Trace of expression evaluation (Program 4.3.5) 1 1 + 1 2 + 1 2 + + 1 2 3 + + 1 5 + 1 5 + * 1 5 4 + * 1 5 4 + * * 1 5 4 5 + * * 1 5 20 + * 1 100 + 101 ) ) ) 44

Queue applications Familiar applications. itunes playlist. Data buffers (ipod, TiVo). Asynchronous data transfer (file IO, pipes, sockets). Dispensing requests on a shared resource (printer, processor). Simulations of the real world. Traffic analysis. Waiting times of customers at call center. Determining number of cashiers to have at a supermarket. 45

Summary of points The choice of data structure can have a major impact on the complexity of an algorithm. Saw several representations of sequences (one more important representation to come later in course). Best choice depends on the usage pattern. Amortized analysis is needed to understand the performance of some data structures. You are only expected to be able to use amortized bounds in algorithm analysis. 46

Course goals The choice of data structure can have a major impact on the complexity of an algorithm. - Saw several representations of sequences (one more important representation to come later in course). - Best choice depends on the usage pattern. Amortized analysis is needed to understand the performance of some data structures. - You are only expected to be able to use amortized bounds in algorithm analysis, not derive amortized bounds on your own. 47

Next week We will next consider fundamental algorithms for sorting. 48