Lecture Objectives To understand the Java Map and Set interfaces and how to use them To be introduced to the implementation of Map s and Set s To see how.

Slides:



Advertisements
Similar presentations
Introduction to Java 2 Programming Lecture 5 The Collections API.
Advertisements

Transparency No. 1 Java Collection API : Built-in Data Structures for Java.
Lists and the Collection Interface Chapter 4. Chapter Objectives To become familiar with the List interface To understand how to write an array-based.
JAVA Programming (Session 7) When you are willing to make sacrifices for a great cause, you will never be alone. Instructor:
Sets and Maps Part of the Collections Framework. 2 The Set interface A Set is unordered and has no duplicates Operations are exactly those for Collection.
Collections Framework A very brief look at Java’s Collection Framework David Davenport May 2010.
SETS AND MAPS Chapter 7 Common final examinations When: Thursday, 12/12, 3:30-5:30 PM Where: Ritter Hall - Walk Auditorium 131.
Sets and Maps ITEC200 – Week Chapter Objectives To understand the Java Map and Set interfaces and how to use them To learn.
Fall 2007CS 225 Sets and Maps Chapter 9. Fall 2007CS 225 Chapter Objectives To understand the Java Map and Set interfaces and how to use them To learn.
CSci 143 Sets & Maps Adapted from Marty Stepp, University of Washington
1 L43 Collections (3). 2 OBJECTIVES  To use the collections framework interfaces to program with collections polymorphically.  To use iterators to “walk.
Liang, Introduction to Java Programming, Sixth Edition, (c) 2007 Pearson Education, Inc. All rights reserved L16 (Chapter 22) Java Collections.
Sets and Maps Chapter 9. Chapter 9: Sets and Maps2 Chapter Objectives To understand the Java Map and Set interfaces and how to use them To learn about.
Lists and the Collection Interface Chapter 4. Chapter 4: Lists and the Collection Interface2 Chapter Objectives To become familiar with the List interface.
24-Jun-15 Introduction to Collections. 2 Collections A collection is a structured group of objects Java 1.2 introduced the Collections Framework Collections.
Sets and Maps (and Hashing)
Fall 2007CS 2251 Lists and the Collection Interface Chapter 4.
© The McGraw-Hill Companies, 2006 Chapter 17 The Java Collections Framework.
Liang, Introduction to Java Programming, Sixth Edition, (c) 2007 Pearson Education, Inc. All rights reserved L15 (Chapter 22) Java Collections.
Chapter 10 2D Arrays Collection Classes. Topics Arrays with more than one dimension Java Collections API ArrayList Map.
Lecture Objectives  To understand the Java Map and Set interfaces and how to use them  To be introduced to the implementation of Map s and Set s  To.
CSE 143 Lecture 7 Sets and Maps reading: ; 13.2 slides created by Marty Stepp
Chapter 19 Java Data Structures
Java's Collection Framework
Java Collections Framework A presentation by Eric Fabricant.
CS-2851 Dr. Mark L. Hornick 1 Tree Maps and Tree Sets The JCF Binary Tree classes.
Java Programming: Advanced Topics 1 Collections and Wealth of Utilities.
CS2110: SW Development Methods Textbook readings: MSD, Chapter 8 (Sect. 8.1 and 8.2) But we won’t implement our own, so study the section on Java’s Map.
Liang, Introduction to Java Programming, Sixth Edition, (c) 2007 Pearson Education, Inc. All rights reserved Chapter 22 Java Collections.
Collections F The limitations of arrays F Java Collection Framework hierarchy  Use the Iterator interface to traverse a collection  Set interface, HashSet,
Liang, Introduction to Java Programming, Eighth Edition, (c) 2011 Pearson Education, Inc. All rights reserved Chapter 22 Java Collections.
Java™ How to Program, 9/e Presented by: Dr. José M. Reyes Álamo © Copyright by Pearson Education, Inc. All Rights Reserved.
CS212: DATA STRUCTURES Lecture 10:Hashing 1. Outline 2  Map Abstract Data type  Map Abstract Data type methods  What is hash  Hash tables  Bucket.
Collections in Java. Kinds of Collections Collection --a group of objects, called elements –Set-- An unordered collection with no duplicates SortedSet.
1 Java's Collection Framework By Rick Mercer with help from The Java Tutorial, The Collections Trail, by Joshua BlockThe Collections Trail.
(c) University of Washington14-1 CSC 143 Java Collections.
Jan 12, 2012 Introduction to Collections. 2 Collections A collection is a structured group of objects Java 1.2 introduced the Collections Framework Collections.
111 © 2002, Cisco Systems, Inc. All rights reserved.
Chapter 18 Java Collections Framework
תוכנה 1 תרגול 8 – מבני נתונים גנריים. 2 Java Collections Framework Collection: a group of elements Interface Based Design: Java Collections Framework.
Sets and Maps Chris Nevison. Set Interface Models collection with no repetitions subinterface of Collection –has all collection methods has a subinterface.
Hashing as a Dictionary Implementation Chapter 19.
SETS AND MAPS Chapter 7. Chapter Objectives  To understand the Java Map and Set interfaces and how to use them  To learn about hash coding and its use.
Collections Data structures in Java. OBJECTIVE “ WHEN TO USE WHICH DATA STRUCTURE ” D e b u g.
Sets and Maps Sets Maps The Comparator Interface Sets and Maps in Java Collections API – TreeSet – TreeMap Review for Exam Reading:
Collections Mrs. C. Furman April 21, Collection Classes ArrayList and LinkedList implements List HashSet implements Set TreeSet implements SortedSet.
Maps Nick Mouriski.
1 Java's Collection Framework Map and Sets. 2 Collection Framework  A collections framework is a unified architecture for representing and manipulating.
CMSC 202 Containers and Iterators. Container Definition A “container” is a data structure whose purpose is to hold objects. Most languages support several.
AD Lecture #3 Java Collection Framework 1.
Liang, Introduction to Java Programming, Tenth Edition, (c) 2013 Pearson Education, Inc. All rights reserved. 1 Chapter 21 Sets and Maps.
4-Mar-16 Introduction to Collections. Revision questions True false questions 0 for False 1 for True Please do not answer anything other than the above.
Sets and Maps Chapter 9. Chapter Objectives  To understand the Java Map and Set interfaces and how to use them  To learn about hash coding and its use.
Collections Dwight Deugo Nesa Matic
3-1 Java's Collection Framework Another use of polymorphism and interfaces Rick Mercer.
Lecture 9:FXML and Useful Java Collections Michael Hsu CSULA.
Introduction to Java Collection. Java Collections What are they? –A number of pre-packaged implementations of common ‘container’ classes, such as LinkedLists,
Lists and the Collection Interface Chapter 4. Chapter 4: Lists and the Collection Interface2 Chapter Objectives To become familiar with the List interface.
Chapter 21 Sets and Maps Jung Soo (Sue) Lim Cal State LA.
Sets and Maps Chapter 9.
Chapter 19 Java Data Structures
Road Map CS Concepts Data Structures Java Language Java Collections
Introduction to Collections
Introduction to Collections
Sets and Maps Chapter 7.
Introduction to Collections
Introduction to Collections
Introduction to Collections
Sets and Maps Chapter 9.
Presentation transcript:

Lecture Objectives To understand the Java Map and Set interfaces and how to use them To be introduced to the implementation of Map s and Set s To see how two earlier applications can be implemented more easily using Map objects for data storage CS340 1

Introduction  We learned about part of the Java Collection Framework in Chapter 2 ( ArrayList and LinkedList )  The classes that implement the List interface are all indexed collections  An index or subscript is associated with each element  The element's index often reflects the relative order of its insertion in the list  Searching for a particular value in a list is generally O(n)  An exception is a binary search of a sorted object, which is O(log n) CS340 2

Introduction (cont.) In this chapter, we consider another part of the Collection hierarchy: the Set interface and the classes that implement it Set objects are not indexed do not reveal the order of insertion of items enable efficient search and retrieval of information allow removal of elements without moving other elements around CS340 3

Introduction (cont.) Relative to a Set, Map objects provide efficient search and retrieval of entries that contain pairs of objects (a unique key and the information) Hash tables (implemented by a Map or Set ) store objects at arbitrary locations and offer an average constant time for insertion, removal, and searching CS340 4

Sets and the Set Interface Section 7.1 CS340 5

Sets and the Set Interface CS340 6

The Set Abstraction  A set is a collection that contains no duplicate elements and at most one null element  adding "apples" to the set {"apples", "oranges", "pineapples"} results in the same set (no change)  Operations on sets include:  testing for membership  adding elements  removing elements  unionA ∪ B  intersectionA ∩ B  differenceA – B  subsetA ⊂ B CS340 7

The Set Abstraction(cont.)  The union of two sets A, B is a set whose elements belong either to A or B or to both A and B. Example: {1, 3, 5, 7} ∪ {2, 3, 4, 5} is {1, 2, 3, 4, 5, 7}  The intersection of sets A, B is the set whose elements belong to both A and B. Example: {1, 3, 5, 7} ∩ {2, 3, 4, 5} is {3, 5}  The difference of sets A, B is the set whose elements belong to A but not to B. Examples: {1, 3, 5, 7} – {2, 3, 4, 5} is {1, 7}; {2, 3, 4, 5} – {1, 3, 5, 7} is {2, 4}  Set A is a subset of set B if every element of set A is also an element of set B. Example: {1, 3, 5, 7} ⊂ {1, 2, 3, 4, 5, 7} is true CS340 8

The Set Interface and Methods Required methods: testing set membership, testing for an empty set, determining set size, and creating an iterator over the set Optional methods: adding an element and removing an element Constructors to enforce the “no duplicate members” criterion The add method does not allow duplicate items to be inserted CS340 9

The Set Interface and Methods(cont.) Required method: containsAll tests the subset relationship Optional methods: addAll, retainAll, and removeAll perform union, intersection, and difference, respectively CS340 10

The Set Interface and Methods(cont.) CS Ann Sally Jill setA Ann Bob Jill setB Bill

The Set Interface and Methods(cont.) CS Ann Sally Jill setA Ann Bob Jill setB Bill setA.addAll(setB);

The Set Interface and Methods(cont.) CS Ann Sally Jill setA Ann Bob Jill setB Bill setA.addAll(setB); System.out.println(setA); Outputs: [Bill, Jill, Ann, Sally, Bob]

The Set Interface and Methods(cont.) CS Ann Sally Jill setA Ann Bob Jill setB Bill If a copy of original setA is in setACopy, then...

The Set Interface and Methods(cont.) CS Ann Sally Jill setA Ann Bob Jill setB Bill setACopy.retainAll(setB);

The Set Interface and Methods(cont.) CS Ann Sally Jill setA Ann Bob Jill setB Bill setACopy.retainAll(setB); System.out.println(setACopy); Outputs: [Jill, Ann]

The Set Interface and Methods(cont.) CS Ann Sally Jill setA Ann Bob Jill setB Bill setACopy.removeAll(setB); System.out.println(setACopy); Outputs: [Sally]

Comparison of Lists and Sets Collections implementing the Set interface must contain unique elements Unlike the List.add method, the Set.add method returns false if you attempt to insert a duplicate item Unlike a List, a Set does not have a get method— elements cannot be accessed by index CS340 18

Comparison of Lists and Sets (cont.) You can iterate through all elements in a Set using an Iterator object, but the elements will be accessed in arbitrary order for (String nextItem : setA) { //Do something with nextItem … } CS340 19

Maps and the Map Interface Section 7.2 CS340 20

Maps and the Map Interface The Map is related to the Set Mathematically, a Map is a set of ordered pairs whose elements are known as the key and the value Keys must be unique, but values need not be unique You can think of each key as a “mapping” to a particular value A map provides efficient storage and retrieval of information in a table A map can have many-to-one mapping: ( B, Bill ), ( B2, Bill ) CS {(J, Jane), (B, Bill), (S, Sam), (B1, Bob), (B2, Bill)}

Maps and the Map Interface(cont.) In an onto mapping, all the elements of valueSet have a corresponding member in keySet The Map interface should have methods of the form V.get (Object key) V.put (K key, V value) CS340 22

Maps and the Map Interface(cont.)  When information about an item is stored in a table, the information should have a unique ID  A unique ID may or may not be a number  This unique ID is equivalent to a key CS Type of itemKeyValue University studentStudent ID numberStudent name, address, major, grade point average Online store customer addressCustomer name, address, credit card information, shopping cart Inventory itemPart IDDescription, quantity, manufacturer, cost, price

Map Hierarchy CS340 24

Map Interface CS340 25

Map Interface (cont.)  The following statements build a Map object: Map aMap = new HashMap (); aMap.put("J", "Jane"); aMap.put("B", "Bill"); aMap.put("S", "Sam"); aMap.put("B1", "Bob"); aMap.put("B2", "Bill"); CS J S B1 B B2 Jane Sam Bob Bill

Map Interface (cont.) aMap.get("B1") returns: "Bob" CS J S B1 B B2 Jane Sam Bob Bill

Map Interface (cont.) aMap.get("Bill") returns: null (" Bill " is a value, not a key) CS J S B1 B B2 Jane Sam Bob Bill

ADDITIONAL APPLICATIONS OF MAPS Section 7.6 CS340 29

Cell Phone Contact List (cont.) Analysis A map will associate the name (the key) with a list of phone numbers (value) Implement ContactListInterface by using a Map > object for the data type CS340 30

Cell Phone Contact List (cont.) Design public class MapContactList implements ContactListInterface { Map > contacts = new TreeMap >();... } CS340 31

Cell Phone Contact List (cont.) Implementation: writing the required methods using the Map methods is straightforward CS340 32

NAVIGABLE SETS AND MAPS Section 7.7 CS340 33

SortedSet and SortedMap  Java 5.0's SortedSet interface extends Set by providing the user with an ordered view of the elements with the ordering defined by a compareTo method  Because the elements are ordered, additional methods can return the first and last elements and define subsets  The ability to define subsets was limited because subsets always had to include the starting element and exclude the ending element  SortedMap interface provides an ordered view of a map with elements ordered by key value CS340 34

NavigableSet and NavigableMap  Java 6 added NavigableSet and NavigableMap interfaces as extensions to SortedSet and SortedMap  Java retains SortedSet and SortedMap for compatibility with existing software  The new interfaces allow the user to specify whether the start or end items are included or excluded  They also enable the user to specify a subset or submap that is traversable in the reverse order CS340 35

NavigableSet Interface (cont.) Listing 7.13 illustrates the use of a NavigableSet. The output of this program consists of the lines: The original set odds is [1, 3, 5, 7, 9] The ordered set b is [3, 5, 7] Its first element is 3 Its smallest element >= 6 is 7 CS340 36

NavigableMap Interface CS340 37

Application of a NavigableMap Interface computeAverage computes the average of the values defined in a Map computeSpans creates a group of submaps of a NavigableMap and passes each submap to computeAverage Given a NavigableMap in which the keys represent years and the values are some statistics for the year, we can generate a table of averages covering different periods CS340 38

Application of a NavigableMap Interface (cont.) Example: Given a map of tropical storms representing the number of tropical storms from 1960 through 1969 List stormAverage = computeSpans(storms,2) Calculates the average number of tropical storms for each successive pair of years CS340 39

Method computeAverage /** Returns the average of the numbers in its Map valueMap The map whose values are The average of the map values */ Public static double computeAverage(Map valueMap){ int count = 0; double sum = 0; for(Map.Entry entry : valueMap.entrySet()) { sum += entry.getValue().doubleValue(); count++; } return (double) sum / count; CS340 40

Method computeSpans /** Return a list of the averages of nonoverlapping spans of values in its NavigableMap valueMap The map whose values are delta The number of map values in each An ArrayList of average values for each span */ Public static List computeSpans(NavigableMap valueMap, int delta) { List result = new ArrayList (); Integer min = (Integer) valueMap.firstEntry().getKey(); Integer max = (Integer) valueMap.lastEntry().getKey(); for (int index = min; index <= max; index += delta) { double average = computeAverage(valueMap.subMap(index, true, index+delta, false)); result.add(average); } return result; } CS340