slides created by Marty Stepp

Slides:



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

24-Jun-15 Introduction to Collections. 2 Collections A collection is a structured group of objects Java 1.2 introduced the Collections Framework Collections.
CSE 373 Data Structures and Algorithms Lecture 18: Hashing III.
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
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.
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.
CSS446 Spring 2014 Nan Wang.  Java Collection Framework ◦ Set ◦ Map 2.
Building Java Programs Chapter 11 Lecture 11-1: Sets and Maps reading:
1 TCSS 143, Autumn 2004 Lecture Notes Java Collection Framework: Maps and Sets.
CSE 143 Lecture 14 (B) Maps and Grammars reading: 11.3 slides created by Marty Stepp
Building Java Programs Chapter 11 Java Collections Framework Copyright (c) Pearson All rights reserved.
CSE 143 Lecture 14 Maps/Sets; Grammars reading: slides adapted from Marty Stepp and Hélène Martin
Maps Nick Mouriski.
CSE 143 Lecture 12: Sets and Maps reading:
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:
Building Java Programs Chapter 11 Java Collections Framework Copyright (c) Pearson All rights reserved.
Slides by Donald W. Smith
Using the Java Collection Libraries COMP 103 # T2
CSc 110, Autumn 2016 Lecture 26: Sets and Dictionaries
Building Java Programs
slides created by Marty Stepp
Collections.
CSc 110, Spring 2017 Lecture 29: Sets and Dictionaries
Wednesday Notecards. Wednesday Notecards Wednesday Notecards.
Ch 16: Data Structures - Set and Map
slides created by Marty Stepp and Hélène Martin
CSc 110, Autumn 2016 Lecture 27: Sets and Dictionaries
Efficiency of in Binary Trees
Data Structures TreeMap HashMap.
CSc 110, Spring 2017 Lecture 28: Sets and Dictionaries
Lecture 3: Working with Data Structures
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
TreeSet TreeMap HashMap
TCSS 143, Autumn 2004 Lecture Notes
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
Part of the Collections Framework
slides adapted from Marty Stepp
slides created by Marty Stepp and Hélène Martin
Maps Grammars Based on slides by Marty Stepp & Alyssa Harding
EE 422C Sets.
slides adapted from Marty Stepp and Hélène Martin
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.
CS2110: Software Development Methods
CSE 373: Data Structures and Algorithms
CSE 373 Java Collection Framework, Part 2: Priority Queue, Map
slides created by Marty Stepp
CSE 143 Lecture 25 Set ADT implementation; hashing read 11.2
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 Alyssa Harding
CSE 373 Separate chaining; hash codes; hash maps
slides created by Marty Stepp
CSE 143 Lecture 15 Sets and Maps; Iterators reading: ; 13.2
CSE 143 Lecture 8 Iterators; Comparable reading: 11.2; 10.2
slides created by Marty Stepp and Hélène Martin
slides adapted from Marty Stepp and Hélène Martin
Web Design & Development Lecture 6
CSE 373 Java Collection Framework reading: Weiss Ch. 3, 4.8
CS 240 – Advanced Programming Concepts
CSE 373 Set implementation; intro to hashing
Presentation transcript:

slides created by Marty Stepp CSE 143 Lecture 7 Sets and Maps reading: 11.2 - 11.3; 13.2 slides created by Marty Stepp http://www.cs.washington.edu/143/

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 and report the # of unique words. Once you've created this collection, allow the user to search it to see whether various words appear in the text file. What collection is appropriate for this problem?

Running a program and measuring its performance Empirical analysis (13.2) Running a program and measuring its performance System.currentTimeMillis() Returns an integer representing the number of milliseconds that have passed since 12:00am, January 1, 1970. The result is returned as a value of type long, which is like int but with a larger numeric range (64 bits vs. 32). Can be called twice to see how many milliseconds have elapsed between two points in a program. How much time does it take to store Moby Dick into a List?

Sets (11.2) set: A collection of unique values (no duplicates allowed) that can perform the following operations efficiently: add, remove, search (contains) We don't think of a set as having indexes; we just add things to the set in general and don't worry about order set.contains("to") true set "the" "of" "from" "to" "she" "you" "him" "why" "in" "down" "by" "if" set.contains("be") false

Set implementation in Java, sets are represented by Set interface in java.util Set is implemented by HashSet and TreeSet classes HashSet: implemented using a "hash table" array; very fast: O(1) for all operations elements are stored in unpredictable order TreeSet: implemented using a "binary search tree"; pretty fast: O(log N) for all operations elements are stored in sorted order

Set methods List<String> list = new ArrayList<String>(); ... Set<Integer> set = new HashSet<Integer>(); // empty Set<String> set2 = new HashSet<String>(list); can construct an empty set, or one based on a given 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]"

Set operations addAll(collection) containsAll(coll) equals(set) retainAll removeAll 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

Sets and ordering Sets do not use indexes; you cannot get element i HashSet : elements are stored in an unpredictable order Set<String> names = new HashSet<String>(); 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 their "natural" sorted order Set<String> names = new TreeSet<String>(); ... // [Jake, Kasey, Marisa, Robert]

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<Double> grades = new HashSet<Double>(); ... for (double grade : set) { System.out.println("Student's grade: " + grade);

Exercise Modify your program to count the number of occurrences of each word in the book. 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?

Maps map: An ADT holding 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"

Maps and tallying a map can be thought of as generalization of an array the "index" (key) doesn't have to be an int recall previous tallying examples from CSE 142 count digits: 22092310907 // (M)cCain, (O)bama, (I)ndependent count votes: "MOOOOOOMMMMMOOOOOOMOMMIMOMMIMOMMIO" index 1 2 3 4 5 6 7 8 9 value "M" "O" "I" 16 3 14 keys values key "M" "O" "I" value 16 14 3

Map implementation in Java, maps are represented by Map interface in java.util Map is implemented by HashMap and TreeMap classes HashMap: implemented using a "hash table" array; very fast: O(1) ; keys are stored in unpredictable order TreeMap: implemented using a "binary search tree"; pretty fast: O(log N) ; keys are stored in sorted order a map requires 2 type parameters: one for keys, one for values // maps from String keys to Integer values Map<String, Integer> votes = new HashMap<String, Integer>();

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

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 "Marty" found in the set? (true/false) A map allows the related piece of information to be something other than a boolean: What is "Marty" 's phone number? "Marty" Set true false "Marty" Map "206-685-2181"

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<String, Integer> ages = new HashMap<String, Integer>(); ages.put("Marty", 19); ages.put("Geneva", 2); ages.put("Vicki", 57); for (String name : ages.keySet()) { // Geneva -> 2 int age = ages.get(age); // 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)