trees
play

TREES Lecture 11 CS2110 Summer 2019 Announcements 2 Confusion - PowerPoint PPT Presentation

TREES Lecture 11 CS2110 Summer 2019 Announcements 2 Confusion about submission due dates/times can be cleared by reading the syllabus (https://courses.cs.cornell.edu/cs2110/2019su/syll abus.html). Remember to make groups before


  1. TREES Lecture 11 CS2110 – Summer 2019

  2. Announcements 2 Confusion about submission due dates/times can § be cleared by reading the syllabus (https://courses.cs.cornell.edu/cs2110/2019su/syll abus.html). Remember to make groups before submission § deadline. Grades have been released for Assignment 1 and § Discussions 1-3. Please submit (private) questions about either of these on Piazza.

  3. Today’s Topics in JavaHyperText 3 ¨ Search for “trees” ¨ Read PDFs for points 0 through 5: intro to trees, examples of trees, binary trees, binary search trees, balanced trees

  4. Data Structures 4 ¨ Data structure ¤ Organization or format for storing or managing data ¤ Concrete realization of an abstract data type ¨ Operations ¤ Always a tradeoff: some operations more efficient, some less, for any data structure ¤ Choose efficient data structure for operations of concern

  5. Example Data Structures 5 𝑃(𝑜) 𝑃(𝑜) 𝑃(1) Data Structure add(val v) get(int i) contains(val v) Array 𝑃(1) 𝑃(𝑜) 𝑃(𝑜) 2 1 3 0 Linked List 2 1 3 0 add(v): append v get(i): return element at position i contains(v): return true if contains v

  6. Tree 6 Singly linked list: 2 1 1 0 Node object pointer int value 0 2 1 Today: trees! 4 1 1 0 1

  7. Trees 7 In CS, we draw trees “upside down”

  8. Tree Overview 8 A tree or not a tree? Tree : data structure with nodes, similar to linked list 5 5 ¤ Each node may have zero or more successors (children) 2 2 4 4 ¤ Each node has exactly one predecessor (parent) except 7 8 9 7 8 9 the root , which has none A tree Not a tree ¤ All nodes are reachable 5 from root 5 6 4 7 7 8 Not a tree A tree

  9. Tree Terminology (1) 9 the root of the tree (no parents) M child of M G W child of M D J P B H N S the leaves of the tree (no children)

  10. Tree Terminology (2) 10 M G W ancestors of B descendants D J P of W B H N S

  11. Tree Terminology (3) 11 M subtree of M G W D J P B H N S

  12. Tree Terminology (4) 12 A node’s depth is the length of the path to the root. A tree’s (or subtree’s) height is the length of the longest path from the root to a leaf. M depth 1 G W height 2 D J P B H N S depth 3 height 0

  13. Tree Terminology (5) 13 Multiple trees: a forest G W D J P B H N S

  14. General vs. Binary Trees 14 5 General tree: every node 4 2 can have an arbitrary number of children 7 8 9 General tree Binary tree: at most two 5 children , called left and 2 4 right 7 9 …often “tree” means Binary tree binary tree Demo

  15. Binary trees were in A1! 15 You have seen a binary tree in A1. A PhD object has one or two advisors. (Note: the advisors are the “children”.) David Gries Friedrich Bauer Georg Aumann Fritz Bopp Fritz Sauter Erwin Fues Heinrich Tietze Constantin Carathodory

  16. Special kinds of binary trees 16 2 depth 0 2 0 1 9 0 5 Height 2, 2 8 3 5 minimum number of nodes Height 2, Max # of nodes at depth d: 2 d maximum number of nodes Complete binary tree If height of tree is h: Every level, except last, min # of nodes: h + 1 is completely filled, max #of nodes: (Perfect tree) nodes on bottom level 2 0 + … + 2 h = 2 h+1 – 1 as far left as possible. No holes.

  17. Trees are recursive a binary tree

  18. Trees are recursive value right left subtree subtree

  19. Trees are recursive value

  20. Trees are recursive Binary Tree 2 Right subtree (also a binary tree) 0 9 Left subtree, which is also a 8 3 5 7 binary tree

  21. Trees are recursive 21 A binary tree is either null or an object consisting of a value, a left binary tree, and a right binary tree.

  22. A Recipe for Recursive Functions 22 Base case: If the input is “easy,” just solve the problem directly. Recursive case: Get a smaller part of the input (or several parts). Call the function on the smaller value(s). Use the recursive result to build a solution for the full input.

  23. A Recipe for Recursive Functions on Binary Trees 23 an empty tree (null), or possibly a leaf Base case: If the input is “easy,” just solve the problem directly. Recursive case: Get a smaller part of the input (or several parts). Call the function on the smaller value(s). each subtree Use the recursive result to build a solution for the full input.

  24. Comparing Searches 24 𝑃(𝑜) 𝑃(𝑜) 𝑃(1) Data Structure add(val v) get(int i) contains(val v) Array 𝑃(1) 𝑃(𝑜) 𝑃(𝑜) 2 1 3 0 Linked List 𝑃(𝑜) 2 1 3 0 Binary Tree 2 1 3 Node could be anywhere in tree

  25. Binary Search Tree (BST) 25 A binary search tree is a binary tree with a class invariant : All nodes in the left subtree have values that are less than the • value in that node, and All values in the right subtree are greater. • (assume no duplicates) 5 >5 <5 2 8 0 3 7 9 Demo

  26. Binary Search Tree (BST) 26 5 2 8 0 3 7 9 Contains: ¨ Binary tree: two recursive calls: O(n) ¨ BST: one recursive call: O(height)

  27. BST Insert 27 To insert a value: ¤ Search for value ¤ If not found, put in tree where search ends Example: Insert month names in chronological order as Strings, (Jan, Feb…). BST orders Strings alphabetically (Feb comes before Jan, etc.)

  28. BST Insert 28 insert: January

  29. BST Insert 29 insert: February January

  30. BST Insert 30 insert: March January February

  31. BST Insert 31 insert: April… January February March

  32. BST Insert 32 January February March April June May August September July October December November

  33. Comparing Data Structures 33 𝑃(𝑜) 𝑃(𝑜) 𝑃(1) Data Structure add(val x) get(int i) contains(val x) Array 𝑃(1) 𝑃(𝑜) 𝑃(𝑜) 2 1 3 0 Linked List 𝑃(𝑜) 2 1 3 0 Binary Tree 1 𝑃(ℎ𝑓𝑗𝑕ℎ𝑢) 𝑃(ℎ𝑓𝑗𝑕ℎ𝑢) 3 2 BST 2 3 1 How big could height be?

  34. Worst case height 34 Insert in alphabetical order… April

  35. Worst case height 35 Insert in alphabetical order… April August

  36. Worst case height 36 Insert in alphabetical order… April August December February January Tree degenerates to list!

  37. Need Balance 37 ¨ Takeaway: BST search is O(n) time ¤ Recall, big O notation is for worst case running time ¤ Worst case for BST is data inserted in sorted order ¨ Balanced binary tree: subtrees of any node are about the same height ¤ In balanced BST, search is O(log n) ¤ Deletion: tricky! Have to maintain balance ¤ [Optional] See JavaHyperText “Extensions to BSTs” ¤ Also see CS 3110

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