more simple binarytree methods tree traversals
play

More simple BinaryTree methods Tree Traversals 1 Exam 1 Day 11 in - PowerPoint PPT Presentation

More simple BinaryTree methods Tree Traversals 1 Exam 1 Day 11 in class Coverage: Everything from reading and lectures, Sessions 1-9 Programs through Hardy Written assignments 1-3 Allowed resources: Written part:


  1. More simple BinaryTree methods Tree Traversals

  2. 1  Exam 1 – Day 11 in class ◦ Coverage:  Everything from reading and lectures, Sessions 1-9  Programs through Hardy  Written assignments 1-3 ◦ Allowed resources:  Written part: One side of one 8.5 x 11 sheet of paper  Programming part:  Textbook  Eclipse (including programs you wrote in your repos)  Course web pages and materials on ANGEL  Java API documentation  A previous 230 Exam 1 is available in Moodle

  3.  Sessions 1-11 o Terminology o Recursion, stack frames o OOP and inheritance o Recursive binary search o Growable Arrays o Binary trees o Homework and Programs o Binary tree traversals o Big-oh, Big-Omega, o Size vs. height for and Big-Theta binary trees o Limits and asymptotic o Binary Search Tree behavior basics o Basic data structures o No induction problems yet. o Comparable and Comparator o MCSS

  4.  Another induction example  Implementing Binary Trees (continued)  Binary Tree Traversals  Hardy/Colorize work time

  5. 2 Show by induction that 2n + 1 < n 2 for all integers n ≥ 3 There are other ways that we could show this (using calculus, for example) But for now the goal is to have another example that can illustrate how to do proofs by induction

  6. 3  Parent  Child  Grandparent  Sibling  Ancestors and descendants  Proper ancestors, proper descendants  Subtree  Leaf, interior node  Depth and height of a node  Height of a tree

  7. Let’s continue implementing a ee<T> class including BinaryT BinaryTree methods size() size() , height( height() , e() , and contain (T) . duplica duplicate( contains(T

  8. 4-7  PreOrder (top-down, depth-first) ◦ root, left, right  PostOrder (bottom-up) ◦ left, right, root  InOrder (left-to-right, if tree is spread out) ◦ Left, root, right  LevelOrder (breadth-first) ◦ Level-by-level, left-to-right within each level

  9. If the tree has N nodes, what’s the (worst- case) big-Oh run-time of each traversal? big-Oh space used?

  10. What if we want to iterate over the elements in the nodes of the tree one-at-a-time instead of just printing all of them?

  11. The assistants and I will be available for help

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