Road Map CS Concepts Data Structures Java Language Java Collections

Slides:



Advertisements
Similar presentations
Transparency No. 1 Java Collection API : Built-in Data Structures for Java.
Advertisements

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.
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
Java Collections. Collections, Iterators, Algorithms CollectionsIteratorsAlgorithms.
CSE373 Optional Section Java Collections 11/12/2013 Luyi Lu.
Java's Collection Framework
SEG4110 – Advanced Software Design and Reengineering TOPIC G Java Collections 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.
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.
(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.
CSS446 Spring 2014 Nan Wang.  Java Collection Framework ◦ Set ◦ Map 2.
Building Java Programs Chapter 11 Lecture 11-1: Sets and Maps reading:
CSE 143 Lecture 14 (B) Maps and Grammars reading: 11.3 slides created by Marty Stepp
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.
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.
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
Building Java Programs
CSc 110, Spring 2017 Lecture 29: Sets and Dictionaries
Chapter 19 Java Data Structures
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
JCF Hashmap & Hashset Winter 2005 CS-2851 Dr. Mark L. Hornick.
CSc 110, Spring 2018 Lecture 32: Sets and Dictionaries
CS240: Advanced Programming Concepts
CSc 110, Autumn 2017 Lecture 30: Sets and Dictionaries
Map interface Empty() - return true if the map is empty; else return false Size() - return the number of elements in the map Find(key) - if there is an.
Week 2: 10/1-10/5 Monday Tuesday Wednesday Thursday Friday
Building Java Programs
Road Map CS Concepts Data Structures Java Language Java Collections
Road Map - Quarter CS Concepts Data Structures Java Language
Building Java Programs
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)
CSE 373: Data Structures and Algorithms
Maps Grammars Based on slides by Marty Stepp & Alyssa Harding
EE 422C Sets.
CSE 373: Data Structures and Algorithms
Road Map - Quarter CS Concepts Data Structures Java Language
Welcome to CSE 143! Go to pollev.com/cse143.
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
Building Java Programs
CSE 373 Java Collection Framework, Part 2: Priority Queue, Map
slides created by Marty Stepp
CSE 1020: The Collection Framework
Sets (11.2) set: A collection of unique values (no duplicates allowed) that can perform the following operations efficiently: add, remove, search (contains)
Road Map - Quarter CS Concepts Data Structures Java Language
Road Map CS Concepts Data Structures Java Language Java Collections
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
CS 240 – Advanced Programming Concepts
Set and Map IS 313,
Presentation transcript:

Road Map CS Concepts Data Structures Java Language Java Collections Client/Implementer Efficiency Recursion Regular Expressions Grammars Sorting Backtracking Hashing Huffman Compression Data Structures Lists Stacks Queues Sets Maps Priority Queues Java Language Exceptions Interfaces References Comparable Generics Inheritance/Polymorphism Abstract Classes Java Collections Arrays ArrayList 🛠 LinkedList 🛠 Stack TreeSet / TreeMap HashSet / HashMap PriorityQueue

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?

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 type in java.util Set is implemented by HashSet and TreeSet classes TreeSet: implemented using a "binary search tree"; pretty fast: O(log N) for all operations elements are stored in sorted order HashSet: implemented using a "hash table" array; very fast: O(1) for all operations elements are stored in unpredictable order

Counting What if we wanted to use something other than an int as an index? count digits: 22092310907 // (C)hocolate, (V)anilla, (S)trawberry count votes: ”CVVVVVVCCCCCVVVVVVCVCCSCVCCSCVCCSV" index 1 2 3 4 5 6 7 8 9 value key ”C" ”V" "S" value 16 14 3

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("Aug") returns 37.3

Maps (11.3) map: Holds a set of key-value pairs, where each key is unique a.k.a. "dictionary", "associative array", "hash" map.get("the") 56 set key value "at" 43 key value "you" 22 key value "in" 37 key value "why" 14 key value "me" 31 key value "the" 56

Map implementation in Java, maps are represented by Map type in java.util Map is implemented by the HashMap and TreeMap classes TreeMap: implemented as a linked "binary tree" structure; very fast: O(log N) ; keys are stored in sorted order HashMap: implemented using an array called a "hash table"; extremely fast: O(1) ; keys are stored in unpredictable order A map requires 2 type params: 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; 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