CSE 143 Lecture 11: Sets and Maps reading: 11.2 - 11.3.

Slides:



Advertisements
Similar presentations
CSci 143 Sets & Maps Adapted from Marty Stepp, University of Washington
Advertisements

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.
24-Jun-15 Introduction to Collections. 2 Collections A collection is a structured group of objects Java 1.2 introduced the Collections Framework Collections.
© The McGraw-Hill Companies, 2006 Chapter 17 The Java Collections Framework.
Sets and Maps Nelson Padua-Perez Bill Pugh Department of Computer Science University of Maryland, College Park.
CSE 373 Data Structures and Algorithms Lecture 18: Hashing III.
The Collections Framework A Brief Introduction. Collections A collection is a structured group of objects –An array is a kind of collection –A Vector.
CSE 143 Lecture 15 Sets and Maps reading: ; 13.2 slides created by Marty Stepp
CSE 143 Lecture 7 Sets and Maps reading: ; 13.2 slides created by Marty Stepp
Java Collections. Collections, Iterators, Algorithms CollectionsIteratorsAlgorithms.
CSE 143 Lecture 15 Sets and Maps; Iterators reading: ; 13.2; 15.3; 16.5 slides adapted from Marty Stepp
CS Collection and Input/Output Classes CS 3331 Fall 2009.
Building Java Programs Chapter 11 Java Collections Framework.
Sets and Maps Part of the Collections Framework. The Set interface A Set is unordered and has no duplicates Operations are exactly those for Collection.
CS-2851 Dr. Mark L. Hornick 1 Tree Maps and Tree Sets The JCF Binary Tree classes.
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, Eighth Edition, (c) 2011 Pearson Education, Inc. All rights reserved Chapter 22 Java Collections.
(c) University of Washington14-1 CSC 143 Java Collections.
1 Sets and Maps Starring: keySet Co-Starring: Collections.
The Java Collections Framework (Part 2) By the end of this lecture you should be able to: Use the HashMap class to store objects in a map; Create objects.
CSE 143 Lecture 11 Maps Grammars slides created by Alyssa Harding
Big Java Chapter 16.
Copyright © 2002, Systems and Computer Engineering, Carleton University Hashtable.ppt * Object-Oriented Software Development Unit 8.
CSS446 Spring 2014 Nan Wang.  Java Collection Framework ◦ Set ◦ Map 2.
Building Java Programs Chapter 11 Lecture 11-1: Sets and Maps reading:
Chapter 18 Java Collections Framework
1 TCSS 143, Autumn 2004 Lecture Notes Java Collection Framework: Maps and Sets.
Sets and Maps Chris Nevison. Set Interface Models collection with no repetitions subinterface of Collection –has all collection methods has a subinterface.
CSE 143 Lecture 14 (B) Maps and Grammars reading: 11.3 slides created by Marty Stepp
CSC 142 P 1 CSC 142 Collections [Reading: Chapter 10]
1 Joe Meehean.  List of names  Set of names  Map names as keys phone #’s as values Phil Bill Will Phil Bill Will Phil Bill Will Phil: Bill:
Copyright 2010 by Pearson Education Building Java Programs Chapter 10, 11 Lecture 22: 143 Preview optional reading: 10.1,
Building Java Programs Chapter 11 Java Collections Framework Copyright (c) Pearson All rights reserved.
Collections Mrs. C. Furman April 21, Collection Classes ArrayList and LinkedList implements List HashSet implements Set TreeSet implements SortedSet.
Set and Map IS 313, Skeletons  Useful coding patterns  Should understand how and why they work how to use  possible quiz material.
CSE 143 Lecture 14 Maps/Sets; Grammars reading: slides adapted from Marty Stepp and Hélène Martin
Maps Nick Mouriski.
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.
CMSC 202 Containers and Iterators. Container Definition A “container” is a data structure whose purpose is to hold objects. Most languages support several.
CSE 143 Lecture 12: Sets and Maps reading:
1 Maps, Stacks and Queues Maps Reading:  2 nd Ed: 20.4, 21.2, 21.7  3 rd Ed: 15.4, 16.2, 16.7 Additional references: Online Java Tutorial at
Liang, Introduction to Java Programming, Tenth Edition, (c) 2013 Pearson Education, Inc. All rights reserved. 1 Chapter 21 Sets and Maps.
CSE 373 Data Structures and Algorithms Lecture 9: Set ADT / Trees.
CSE 373: Data Structures and Algorithms Lecture 16: Hashing III 1.
3-1 Java's Collection Framework Another use of polymorphism and interfaces Rick Mercer.
Building Java Programs Chapter 11 Java Collections Framework Copyright (c) Pearson All rights reserved.
CSc 110, Autumn 2016 Lecture 26: Sets and Dictionaries
Building Java Programs
CSc 110, Spring 2017 Lecture 29: Sets and Dictionaries
Wednesday Notecards. Wednesday Notecards Wednesday Notecards.
slides created by Marty Stepp and Hélène Martin
CSc 110, Autumn 2016 Lecture 27: Sets and Dictionaries
CSc 110, Spring 2017 Lecture 28: Sets and Dictionaries
CSc 110, Spring 2018 Lecture 32: Sets and Dictionaries
CSc 110, Autumn 2017 Lecture 31: Dictionaries
CSc 110, Autumn 2017 Lecture 30: Sets and Dictionaries
Week 2: 10/1-10/5 Monday Tuesday Wednesday Thursday Friday
Road Map CS Concepts Data Structures Java Language Java Collections
Sets (11.2) set: A collection of unique values (no duplicates allowed) that can perform the following operations efficiently: add, remove, search (contains)
CSc 110, Spring 2018 Lecture 33: Dictionaries
CSE 373: Data Structures and Algorithms
Adapted from slides by Marty Stepp and Stuart Reges
Exercise Write a program that counts the number of unique words in a large text file (say, Moby Dick or the King James Bible). Store the words in a collection.
CSE 373 Java Collection Framework, Part 2: Priority Queue, Map
slides created by Marty Stepp
Sets (11.2) set: A collection of unique values (no duplicates allowed) that can perform the following operations efficiently: add, remove, search (contains)
slides created by Marty Stepp
CSE 143 Lecture 15 Sets and Maps; Iterators reading: ; 13.2
slides adapted from Marty Stepp and Hélène Martin
Presentation transcript:

CSE 143 Lecture 11: Sets and Maps reading:

2 The "for each" loop (7.1) for ( type name : collection ) { statements ; } Provides a clean syntax for looping over the elements of a Set, List, array, or other collection Set grades = new HashSet ();... for (double grade : grades) { System.out.println("Student's grade: " + grade); } needed because sets have no indexes; can't get element i

3 Exercise Write a program to count the number of occurrences of each unique word in a large text file (e.g. Moby Dick ). Allow the user to type a word and report how many times that word appeared in the book. Report all words that appeared in the book at least 500 times, in alphabetical order. What collection is appropriate for this problem?

4 Maps (11.3) map: Holds a set of unique keys and a collection of values, where each key is associated with one value. a.k.a. "dictionary", "associative array", "hash" basic map operations: put(key, value ): Adds a mapping from a key to a value. get(key ): Retrieves the value mapped to the key. remove(key ): Removes the given key and its mapped value. myMap.get("Juliet") returns "Capulet"

5 Map implementation in Java, maps are represented by Map type in java.util Map is implemented by the HashMap and TreeMap classes HashMap : implemented using an array called a "hash table"; extremely fast: O(1) ; keys are stored in unpredictable order TreeMap : implemented as a linked "binary tree" structure; very fast: O(log N) ; keys are stored in sorted order LinkedHashMap : O(1) ; keys are stored in order of insertion A map requires 2 type params: one for keys, one for values. // maps from String keys to Integer values Map votes = new HashMap ();

6 Map methods put( key, value ) adds a mapping from the given key to the given value; if the key already exists, replaces its value with the given one get( key ) returns the value mapped to the given key ( null if not found) containsKey( key ) returns true if the map contains a mapping for the given key remove( key ) removes any existing mapping for the given key clear() removes all key/value pairs from the map size() returns the number of key/value pairs in the map isEmpty() returns true if the map's size is 0 toString() returns a string such as "{a=90, d=60, c=70}" keySet() returns a set of all keys in the map values() returns a collection of all values in the map putAll( map ) adds all key/value pairs from the given map to this map equals( map ) returns true if given map has the same mappings as this one

7 Using maps A map allows you to get from one half of a pair to the other. Remembers one piece of information about every index (key). Later, we can supply only the key and get back the related value: Allows us to ask: What is Suzy's phone number? Map get("Suzy") " " Map // key value put("Suzy", " ")

8 Maps and tallying a map can be thought of as generalization of a tallying array the "index" (key) doesn't have to be an int count digits: // (M)cCain, (O)bama, (I)ndependent count votes: "MOOOOOOMMMMMOOOOOOMOMMIMOMMIMOMMIO" index value key"M""O""I" value16143 "M" "O" "I" keys values

9 keySet and values keySet method returns a Set of all keys in the map can loop over the keys in a foreach loop can get each key's associated value by calling get on the map Map ages = new TreeMap (); ages.put("Marty", 19); ages.put("Geneva", 2); // ages.keySet() returns Set ages.put("Vicki", 57); for (String name : ages.keySet()) { // Geneva -> 2 int age = ages.get(name); // Marty -> 19 System.out.println(name + " -> " + age); // Vicki -> 57 } values method returns a collection of all values in the map can loop over the values in a foreach loop no easy way to get from a value to its associated key(s)