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

Slides:



Advertisements
Similar presentations
Introduction to Computation and Problem Solving Class 32: The Java® Collections Framework Prof. Steven R. Lerman and Dr. V. Judson Harward.
Advertisements

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.
1 L43 Collections (3). 2 OBJECTIVES  To use the collections framework interfaces to program with collections polymorphically.  To use iterators to “walk.
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.
CSE 373 Data Structures and Algorithms Lecture 18: Hashing III.
Copyright 2006 by Pearson Education 1 Building Java Programs Chapter 11: Java Collections Framework.
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.
Java's Collection Framework
CSE 143 Lecture 15 Sets and Maps; Iterators reading: ; 13.2; 15.3; 16.5 slides adapted from Marty Stepp
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.
Java™ How to Program, 9/e Presented by: Dr. José M. Reyes Álamo © Copyright by Pearson Education, Inc. All Rights Reserved.
Collections in Java. Kinds of Collections Collection --a group of objects, called elements –Set-- An unordered collection with no duplicates SortedSet.
(c) University of Washington14-1 CSC 143 Java 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
CSE 143 Lecture 2 More ArrayList ; classes and objects reading: 10.1; slides created by Marty Stepp and Hélène Martin
CSE 143 Lecture 4 ArrayList Reading: 10.1 slides created by Marty Stepp
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.
1 Building Java Programs 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.
CSE 143 Lecture 14 (B) Maps and Grammars reading: 11.3 slides created by Marty Stepp
CSE 143 Lecture 2 ArrayList reading: 10.1 slides created by Marty Stepp
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.
CSE 143 Lecture 14 Maps/Sets; Grammars reading: slides adapted from Marty Stepp and Hélène Martin
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.
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
Collections Dwight Deugo Nesa Matic
CSE 373 Data Structures and Algorithms Lecture 9: Set ADT / Trees.
CSE 373: Data Structures and Algorithms Lecture 16: Hashing III 1.
CSE 143 Lecture 11: Sets and Maps reading:
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
TCSS 342, Winter 2006 Lecture Notes
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
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
CSE 373 Java Collection Framework reading: Weiss Ch. 3, 4.8
Presentation transcript:

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

2 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 –Report the number of unique words –Allow the user to search for a word, and report whether or not the word occurred What collection would you use?

3 Sets Set - a collection of unique values (no duplicates) –Allowed operations: add, remove, search (contains) –No indexes –Order is unimportant set.contains("to") true set "the" "of" "from" "to" "she" "you" "him" "why" "in" "down" "by" "if" set.contains("be")false

4 Set implementation in Java, sets implement the Set interface in java.util HashSet and TreeSet classes implement Set –HashSet implemented using a "hash table" array very fast elements are stored in unpredictable order –TreeSet implemented using a "binary search tree“ pretty fast elements are stored in sorted order

5 Set methods List list = new ArrayList ();... Set set = new HashSet (); Set set2 = new HashSet (list); –can construct an empty set, or one based on another collection add( value ) adds the given value to the set contains( value ) returns true if the given value is found in this set remove( value ) removes the given value from the set clear() removes all elements of the set size() returns the number of elements in list isEmpty() returns true if the set's size is 0 toString() returns a string such as "[3, 42, -7, 15]"

6 Set operations addAll( collection ) adds all elements from the given collection to this set containsAll( coll ) returns true if this set contains every element from given set equals( set ) returns true if given other set contains the same elements iterator() returns an object used to examine set's contents (seen later) removeAll( coll ) removes all elements in the given collection from this set retainAll( coll ) removes elements not found in given collection from this set toArray() returns an array of the elements in this set addAll retainAllremoveAll

7 Sets and ordering Set s do not use indexes; you cannot get element i HashSet : elements are stored in an unpredictable order Set names = new HashSet (); names.add("Jake"); names.add("Robert"); names.add("Marisa"); names.add("Kasey"); System.out.println(names); // [Kasey, Robert, Jake, Marisa] TreeSet : elements are stored in sorted order Set names = new TreeSet ();... // [Jake, Kasey, Marisa, Robert]

8 The "for each" loop 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(“Grade is: " + grade); }

9 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 –Report the number of unique words –Allow the user to search for a word, and report whether or not the word occurred What collection would you use?

10 Maps 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 map.get("Juliet") returns "Capulet"

11 Maps and tallying a map can be thought of as generalization of an array –the "index" (key) can be any data type // (M)cCain, (O)bama, (I)ndependent –count votes: "MOOOOOOMMMMMOOOOOOMOMMIMOMMIMOMMIO" key"M""O""I" value16143 "M" "O" "I" keys values

12 Map implementation maps implement the Map interface in java.util HashMap and TreeMap classes implement Map –HashMap implemented using a "hash table" array very fast keys are stored in unpredictable order –TreeMap implemented using a "binary search tree“ pretty fast keys are stored in sorted order a map requires 2 type parameters –one for keys, one for values Map ages = new HashMap ();

13 Map methods put( key, value ) adds a mapping from the given key to the given value get( key ) returns the value mapped to the given key ( null if none) 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 same mappings as this one

14 Example Map ages = new HashMap (); ages.put("Marty", 19); ages.put("Geneva", 2); ages.put("Vicki", 57); System.out.println(ages); {Vicki=57, Marty=19, Geneva=2} Press any key to continue...

15 keySet 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 using get Map ages = new HashMap (); ages.put("Marty", 19); ages.put("Geneva", 2); ages.put("Vicki", 57); for (String name : ages.keySet()) { System.out.println(name + " -> " + ages.get(name)); }

16 Exercise Write a program to count the number of occurrences of each word in a file. –Print every word that appears in the file at least 1000 times, in alphabetical order. –Allow the user to type a word and report how many times that word appears in the file. What collection is appropriate for this problem?

17 Maps vs. Sets A set is like a map from elements to boolean values. –We are remembering one related piece of information about every element: Is “Sam" in the set? (true/false) –A map allows the related piece of information to be something other than a boolean: What is “Sam" 's phone number? Set “Sam" true false Map “Sam" " "