cs 10 problem solving via object oriented programming
play

CS 10: Problem solving via Object Oriented Programming Info - PowerPoint PPT Presentation

CS 10: Problem solving via Object Oriented Programming Info Retrieval ADT Overview List Description Keep items stored in order by index Common use Grow to hold any number of items Implementation Linked list options


  1. CS 10: Problem solving via Object Oriented Programming Info Retrieval

  2. ADT Overview List Description Keep items stored in order by index Common use • Grow to hold any number of items Implementation • Linked list options • Growing array Java provided • LinkedList • ArrayList 2

  3. ADT Overview List (Binary) Tree Description Keep items Keep stored in order hierarchical by index relationship between nodes Common use • Grow to • Find items hold any quickly by number of Key items • Generally faster than List Implementation • Linked list • BinaryTree options • Growing • BST array Java provided • LinkedList • ArrayList 3

  4. ADT Overview List (Binary) Tree Set Description Keep items Keep Keep an stored in order hierarchical unordered by index relationship set of objects between nodes Common use • Grow to • Find items • Prevent hold any quickly by duplicates number of Key items • Generally faster than List Implementation • Linked list • BinaryTree • List options • Growing • BST • BST array • Hash table Java provided • LinkedList • TreeSet • ArrayList • HashSet 4

  5. ADT Overview List (Binary) Tree Set Map Description Keep items Keep Keep an Keep a set of stored in order hierarchical unordered Key/Value pairs by index relationship set of objects between nodes Common use • Grow to • Find items • Prevent • Find items hold any quickly by duplicates quickly by number of Key Key items • Generally faster than List Implementation • Linked list • BinaryTree • List • List options • Growing • BST • BST • BST array • Hash table • Hash table Java provided • LinkedList • TreeSet • TreeMap • ArrayList • HashSet • HashMap 5

  6. Agenda 1. Set ADT 2. Map ADT 3. Reading from file/keyboard 4. Search 6

  7. Sets are an unordered collection of items without duplicates Set ADT • Model for mathematical definition of a Set • Like a List, but: • Unordered (no i th item, can’t set/get by position) • No duplicates allowed • Operations: • add(E e) – adds e to Set if not already present • contains(E e) – returns true if e in Set, else false • isEmpty() – true if no elements in Set, else false • Iterator<E> iterator() – returns iterator over Set • remove(E e) – removes e from Set • size() – returns number of elements in Set 7

  8. Sets start out empty Initial state isEmpty: True Set size: 0 8

  9. First item added will always create a new entry in the Set (item can’t be a duplicate) add(1) isEmpty: False Set size: 1 1 9

  10. Can think of adding items to Set like adding items to “Bag of items” – no item ordering add(27) isEmpty: False Set size: 2 1 27 10

  11. Can think of adding items to Set like adding items to “Bag of items” – no item ordering add(6) isEmpty: False Set size: 3 1 6 27 11

  12. Can think of adding items to Set like adding items to “Bag of items” – no item ordering add(12) isEmpty: False Set size: 4 1 12 6 27 12

  13. Can think of adding items to Set like adding items to “Bag of items” – no item ordering add(15) isEmpty: False Set size: 5 1 12 6 27 15 13

  14. Adding an item that is already in the Set does not change the Set add(6) isEmpty: False Set size: 5 1 12 6 6 already in Set 27 No change 15 14

  15. Items can be removed remove(1) isEmpty: False Set size: 5 1 12 6 27 15 15

  16. Items can be removed remove(1) isEmpty: False Set size: 4 1 removed size reduced 12 6 27 15 16

  17. Can also check to see if item is in Set contains(12) isEmpty: False Set True size: 4 12 6 27 15 17

  18. Can also check to see if item is in Set contains(13) isEmpty: False Set False size: 4 12 6 27 15 18

  19. Trees are one way to implement the Set ADT Sets implemented with Trees • Could implement as a List, but linear search time • Trees are a natural way to think about implementation • If the Set is implemented with a Binary Search Tree (BST) 19

  20. Trees are one way to implement the Set ADT Sets implemented with Trees • Could implement as a List, but linear search time • Trees are a natural way to think about implementation • If the Set is implemented with a Binary Search Tree (BST) Operation Run-time Notes add(e) O(h) • Search for node until found or hit leaf If not found, add new leaf (if found do nothing) • Might have to add node on longest path • Can’t be more than h+1 checks • 20

  21. Trees are one way to implement the Set ADT Sets implemented with Trees • Could implement as a List, but linear search time • Trees are a natural way to think about implementation • If the Set is implemented with a Binary Search Tree (BST) Operation Run-time Notes add(e) O(h) • Search for node until found or hit leaf If not found, add new leaf (if found do nothing) • Might have to add node on longest path • Can’t be more than h+1 checks • contains(e) O(h) Search for node until found or hit leaf • Might have to search longest path • Can’t be more than h+1 checks • 21

  22. Trees are one way to implement the Set ADT Sets implemented with Trees • Could implement as a List, but linear search time • Trees are a natural way to think about implementation • If the Set is implemented with a Binary Search Tree (BST) Operation Run-time Notes add(e) O(h) • Search for node until found or hit leaf If not found, add new leaf (if found do nothing) • Might have to add node on longest path • Can’t be more than h+1 checks • contains(e) O(h) Search for node until found or hit leaf • Might have to search longest path • Can’t be more than h+1 checks • remove(e) O(h) Traverse tree to find element, then delete it • 22

  23. Trees are one way to implement the Set ADT Sets implemented with Trees • Could implement as a List, but linear search time • Trees are a natural way to think about implementation • If the Set is implemented with a Binary Search Tree (BST) Operation Run-time Notes add(e) O(h) • Search for node until found or hit leaf If not found, add new leaf (if found do nothing) • Might have to add node on longest path • Can’t be more than h+1 checks • contains(e) O(h) Search for node until found or hit leaf • Might have to search longest path • Can’t be more than h+1 checks • remove(e) O(h) Traverse tree to find element, then delete it • • Soon we will see another, more efficient way to implement a Set using a hash table 23

  24. Can use a Set to easily identify the unique words in a body of text Text from which to identify unique words "Pretend that this string was loaded from a web page. We won't go to all that trouble here. This string contains multiple words. And multiple copies of multiple words. And multiple words with multiple copies. It is to be used as a test to demonstrate how sets work in removing redundancy by keeping only one copy of each thing. Is it very very redundant in having more than one copy of some words?” Pseudocode Set <String> Add each word in • text to Set • Create Set with String as • Duplicates not element maintained • Loop over each word in text • Add to Set • Print Set when done 24

  25. Can use a Set to easily identify the unique words in a body of text Text from which to identify unique words " Pretend that this string was loaded from a web page. We won't go to all that trouble here. This string contains multiple words. And multiple copies of multiple words. And multiple words with multiple copies. It is to be used as a test to demonstrate how sets work in removing redundancy by keeping only one copy of each thing. Is it very very redundant in having more than one copy of some words?” Pseudocode Set <String> • Create Set with String as Pretend element • Loop over each word in text • Add to Set • Print Set when done 25

  26. Can use a Set to easily identify the unique words in a body of text Text from which to identify unique words "Pretend that this string was loaded from a web page. We won't go to all that trouble here. This string contains multiple words. And multiple copies of multiple words. And multiple words with multiple copies. It is to be used as a test to demonstrate how sets work in removing redundancy by keeping only one copy of each thing. Is it very very redundant in having more than one copy of some words?” Pseudocode Set <String> • Create Set with String as Pretend element that • Loop over each word in text • Add to Set • Print Set when done 26

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend