Copyright © 2007 Pearson Education, Inc. Publishing as Pearson Addison-Wesley. Ver. 5.0.

Slides:



Advertisements
Similar presentations
CSC 205 – Java Programming II Lecture 35 April 17, 2002.
Advertisements

1 abstract containers hierarchical (1 to many) graph (many to many) first ith last sequence/linear (1 to 1) set.
Binary Trees, Binary Search Trees CMPS 2133 Spring 2008.
© 2006 Pearson Addison-Wesley. All rights reserved11 B-1 Chapter 11 (continued) Trees.
Trees. Terminology Trees are hierarchical –“parent-child” relationship A is the parent of B B is a child of A B and C are siblings Generalized to ancestor.
Data Structures Data Structures Topic #8. Today’s Agenda Continue Discussing Table Abstractions But, this time, let’s talk about them in terms of new.
© 2006 Pearson Addison-Wesley. All rights reserved11 A-1 Chapter 11 Trees.
1 Trees & More Tables (Walls & Mirrors - Chapter 10 & Beginning of 11)
© 2006 Pearson Addison-Wesley. All rights reserved11 A-1 Chapter 11 Trees.
1 abstract containers hierarchical (1 to many) graph (many to many) first ith last sequence/linear (1 to 1) set.
Chapter 12 Trees. Copyright © 2005 Pearson Addison-Wesley. All rights reserved Chapter Objectives Define trees as data structures Define the terms.
Fundamentals of Python: From First Programs Through Data Structures
Data Structures Using C++ 2E Chapter 11 Binary Trees and B-Trees.
A Binary Search Tree Implementation Chapter 25 Copyright ©2012 by Pearson Education, Inc. All rights reserved.
Marc Smith and Jim Ten Eyck
Version TCSS 342, Winter 2006 Lecture Notes Trees Binary Trees Binary Search Trees.
Trees Chapter 8. 2 Tree Terminology A tree consists of a collection of elements or nodes, organized hierarchically. The node at the top of a tree is called.
Chapter 11 A Trees. © 2004 Pearson Addison-Wesley. All rights reserved 11 A-2 Terminology A tree consists of vertices and edges, –An edge connects to.
COSC2007 Data Structures II
Trees. Tree Terminology Chapter 8: Trees 2 A tree consists of a collection of elements or nodes, with each node linked to its successors The node at the.
Chapter 19: Binary Trees. Objectives In this chapter, you will: – Learn about binary trees – Explore various binary tree traversal algorithms – Organize.
Trees Chapter 15 Data Structures and Problem Solving with C++: Walls and Mirrors, Carrano and Henry, © 2013.
CS Data Structures Chapter 15 Trees Mehmet H Gunes
CS Data Structures Chapter 5 Trees. Chapter 5 Trees: Outline  Introduction  Representation Of Trees  Binary Trees  Binary Tree Traversals 
Lecture 10 Trees –Definiton of trees –Uses of trees –Operations on a tree.
Copyright © 2007 Pearson Education, Inc. Publishing as Pearson Addison-Wesley. Ver Chapter 10: Trees Data Abstraction & Problem Solving with C++
© 2011 Pearson Addison-Wesley. All rights reserved 11 B-1 Chapter 11 (continued) Trees.
Topic 14 The BinaryTree ADT Objectives Define trees as data structures Define the terms associated with trees Discuss tree traversal algorithms.
Trees Chapter 8. Chapter 8: Trees2 Chapter Objectives To learn how to use a tree to represent a hierarchical organization of information To learn how.
Chapter 19 Implementing Trees and Priority Queues Fundamentals of Java.
Spring 2010CS 2251 Trees Chapter 6. Spring 2010CS 2252 Chapter Objectives Learn to use a tree to represent a hierarchical organization of information.
Chapter 19 Implementing Trees and Priority Queues Fundamentals of Java.
Tree (new ADT) Terminology:  A tree is a collection of elements (nodes)  Each node may have 0 or more successors (called children)  How many does a.
Binary Trees, Binary Search Trees RIZWAN REHMAN CENTRE FOR COMPUTER STUDIES DIBRUGARH UNIVERSITY.
COSC2007 Data Structures II Chapter 11 Trees V. 2 Topics TreeSort Save/Restore into/from file General Trees.
1 Chapter 10 Trees. 2 Definition of Tree A tree is a set of linked nodes, such that there is one and only one path from a unique node (called the root.
Trees Chapter 8. 2 Tree Terminology A tree consists of a collection of elements or nodes, organized hierarchically. The node at the top of a tree is called.
Starting at Binary Trees
Tree Implementations Chapter 16 Data Structures and Problem Solving with C++: Walls and Mirrors, Carrano and Henry, © 2013.
Chapter 11 B Trees. © 2004 Pearson Addison-Wesley. All rights reserved 11 B-2 The ADT Binary Search Tree A deficiency of the ADT binary tree which is.
COSC2007 Data Structures II Chapter 11 Trees IV. 2 Topics ADT BST Implementations Efficiency TreeSort Save/Restore into/from file General Trees.
The ADT Table The ADT table, or dictionary Uses a search key to identify its items Its items are records that contain several pieces of data 2 Figure.
M180: Data Structures & Algorithms in Java Trees & Binary Trees Arab Open University 1.
ADT Binary Search Tree Ellen Walker CPSC 201 Data Structures Hiram College.
Trees Chapter 10. CS 308 2Chapter Trees Preview: Preview: The data organizations presented in previous chapters are linear, in that items are one.
© 2006 Pearson Addison-Wesley. All rights reserved11 A-1 Chapter 11 Trees.
Data Abstraction and Problem Solving with JAVA Walls and Mirrors Frank M. Carrano and Janet J. Prichard © 2001 Addison Wesley Data Abstraction and Problem.
BINARY TREES Objectives Define trees as data structures Define the terms associated with trees Discuss tree traversal algorithms Discuss a binary.
Copyright © 2009 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Chapter 20: Binary Trees.
1 Trees. 2 Trees Trees. Binary Trees Tree Traversal.
Tree Representation and Terminology Binary Trees Binary Search Trees Pointer-Based Representation of a Binary Tree Array-Based Representation of a Binary.
Trees Chapter 15.
Data Structure and Algorithms
Trees Chapter 11 (continued)
Trees Chapter 11 (continued)
CS 302 Data Structures Trees.
Chapter 11 Trees © 2011 Pearson Addison-Wesley. All rights reserved.
Csc 2720 Instructor: Zhuojun Duan
Chapter 16 Tree Implementations
Binary Trees, Binary Search Trees
Ch. 11 Trees 사실을 많이 아는 것 보다는 이론적 틀이 중요하고, 기억력보다는 생각하는 법이 더 중요하다.
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.
Chapter 16 Tree Implementations
Binary Trees, Binary Search Trees
Trees Chapter 10.
Trees.
Chapter 11 Trees © 2011 Pearson Addison-Wesley. All rights reserved.
CSC 205 – Java Programming II
Binary Trees, Binary Search Trees
Chapter 11 Trees © 2011 Pearson Addison-Wesley. All rights reserved.
Presentation transcript:

Copyright © 2007 Pearson Education, Inc. Publishing as Pearson Addison-Wesley. Ver. 5.0.

Categories of Data-Management Operations General: Operations that Insert data into a data collection Delete data from a data collection Ask questions about the data in a data collection Position-oriented ADTs: Operations that Insert data into the i th position Delete data from the i th position Ask a question about the data in the i th position Examples: list, stack, queue, binary tree 2

Copyright © 2007 Pearson Education, Inc. Publishing as Pearson Addison-Wesley. Ver Categories of Data-Management Operations Value-oriented ADTs: Operations that Insert data according to its value Delete data knowing only its value Ask a question about data knowing only its value Examples: sorted list, binary search tree 3

Copyright © 2007 Pearson Education, Inc. Publishing as Pearson Addison-Wesley. Ver Terminology Trees are composed of nodes and edges Trees are hierarchical Parent-child relationship between two nodes Ancestor-descendant relationships among nodes Subtree of a tree: Any node and its descendants 4

Copyright © 2007 Pearson Education, Inc. Publishing as Pearson Addison-Wesley. Ver Terminology 5 Figure 10-1 A general treeFigure 10-2 A subtree of the tree in Figure 10-1

Copyright © 2007 Pearson Education, Inc. Publishing as Pearson Addison-Wesley. Ver Terminology General tree A general tree T is a set of one or more nodes such that T is partitioned into disjoint subsets: A single node r, the root Sets that are general trees, called subtrees of r 6

Copyright © 2007 Pearson Education, Inc. Publishing as Pearson Addison-Wesley. Ver Terminology Parent of node n The node directly above node n in the tree Child of node n A node directly below node n in the tree Root The only node in the tree with no parent Subtree of node n A tree that consists of a child (if any) of node n and the child’s descendants 7

Copyright © 2007 Pearson Education, Inc. Publishing as Pearson Addison-Wesley. Ver Terminology Leaf A node with no children Siblings Nodes with a common parent Ancestor of node n A node on the path from the root to n Descendant of node n A node on a path from n to a leaf 8

Copyright © 2007 Pearson Education, Inc. Publishing as Pearson Addison-Wesley. Ver A Binary Tree A binary tree is a set T of nodes such that either T is empty, or T is partitioned into three disjoint subsets: A single node r, the root Two possibly empty sets that are binary trees, called the left subtree of r and the right subtree of r 9

Copyright © 2007 Pearson Education, Inc. Publishing as Pearson Addison-Wesley. Ver A General Tree & A Binary Tree Figure 10-3 (a) An organization chart; (b) a family tree 10

Copyright © 2007 Pearson Education, Inc. Publishing as Pearson Addison-Wesley. Ver More Binary Trees 11 Figure 10-4 Binary trees that represent algebraic expressions

Copyright © 2007 Pearson Education, Inc. Publishing as Pearson Addison-Wesley. Ver A Binary Search Tree A binary search tree A binary tree that has the following properties for each node n n’s value is > all values in n’s left subtree T L n’s value is < all values in n’s right subtree T R Both T L and T R are binary search trees 12

Copyright © 2007 Pearson Education, Inc. Publishing as Pearson Addison-Wesley. Ver A Binary Search Tree 13 Figure 10-5 A binary search tree of names

Copyright © 2007 Pearson Education, Inc. Publishing as Pearson Addison-Wesley. Ver The Height of Trees Height of a tree Number of nodes along the longest path from the root to a leaf Height 3 Height 5 Height 7 14 Figure 10-6 Binary trees with the same nodes but different heights

Copyright © 2007 Pearson Education, Inc. Publishing as Pearson Addison-Wesley. Ver The Height of Trees Level of a node n in a tree T If n is the root of T, it is at level 1 If n is not the root of T, its level is 1 greater than the level of its parent Height of a tree T defined in terms of the levels of its nodes If T is empty, its height is 0 If T is not empty, its height is equal to the maximum level of its nodes 15

Copyright © 2007 Pearson Education, Inc. Publishing as Pearson Addison-Wesley. Ver The Height of Trees A recursive definition of height If T is empty, its height is 0 If T is not empty, height(T) = 1 + max{height(T L ), height(T R )} r / \ T L T R 16

Copyright © 2007 Pearson Education, Inc. Publishing as Pearson Addison-Wesley. Ver Full Binary Trees A binary tree of height h is full if Nodes at levels < h have two children each Recursive definition If T is empty, T is a full binary tree of height 0 If T is not empty and has height h > 0, T is a full binary tree if its root’s subtrees are both full binary trees of height h – 1 17 Figure 10-7 A full binary tree of height 3

Copyright © 2007 Pearson Education, Inc. Publishing as Pearson Addison-Wesley. Ver Complete Binary Trees A binary tree of height h is complete if It is full to level h – 1, and Level h is filled from left to right 18

Copyright © 2007 Pearson Education, Inc. Publishing as Pearson Addison-Wesley. Ver Complete Binary Trees Figure 10-8 A complete binary tree 19

Copyright © 2007 Pearson Education, Inc. Publishing as Pearson Addison-Wesley. Ver Complete Binary Trees Another definition: A binary tree of height h is complete if All nodes at levels <= h – 2 have two children each, and When a node at level h – 1 has children, all nodes to its left at the same level have two children each, and When a node at level h – 1 has one child, it is a left child 20

Copyright © 2007 Pearson Education, Inc. Publishing as Pearson Addison-Wesley. Ver Balanced Binary Trees A binary tree is balanced if the heights of any node’s two subtrees differ by no more than 1 Complete binary trees are balanced Full binary trees are complete and balanced 21

Copyright © 2007 Pearson Education, Inc. Publishing as Pearson Addison-Wesley. Ver The ADT Binary Tree 22 Figure 10-9 UML diagram for the class BinaryTree

Copyright © 2007 Pearson Education, Inc. Publishing as Pearson Addison-Wesley. Ver The ADT Binary Tree Building the ADT binary tree in Fig. 10-6b tree1.setRootData(‘F’) tree1.attachLeft(‘G’) tree2.setRootData(‘D’) tree2.attachLeftSubtree(tree1) tree3.setRootData(‘B’) tree3.attachLeftSubtree(tree2) tree3.attachRight(‘E) tree4.setRootData(‘C’) tree10_6.createBinaryTree(‘A’,tree3,tree4) 23

Copyright © 2007 Pearson Education, Inc. Publishing as Pearson Addison-Wesley. Ver Traversals of a Binary Tree A traversal visits each node in a tree You do something with or to the node during a visit For example, display the data in the node General form of a recursive traversal algorithm traverse (in binTree:BinaryTree) if (binTree is not empty) { traverse(Left subtree of binTree’s root) traverse(Right subtree of binTree’s root) } 24

Copyright © 2007 Pearson Education, Inc. Publishing as Pearson Addison-Wesley. Ver Traversals of a Binary Tree Preorder traversal Visit root before visiting its subtrees i. e. Before the recursive calls Inorder traversal Visit root between visiting its subtrees i. e. Between the recursive calls Postorder traversal Visit root after visiting its subtrees i. e. After the recursive calls 25

Copyright © 2007 Pearson Education, Inc. Publishing as Pearson Addison-Wesley. Ver Traversals of a Binary Tree 26 Figure Traversals of a binary tree: (a) preorder; (b) inorder; (c) postorder

Copyright © 2007 Pearson Education, Inc. Publishing as Pearson Addison-Wesley. Ver Traversals of a Binary Tree A traversal operation can call a function to perform a task on each item in the tree This function defines the meaning of “visit” The client defines and passes this function as an argument to the traversal operation 27

Copyright © 2007 Pearson Education, Inc. Publishing as Pearson Addison-Wesley. Ver Possible Representations of a Binary Tree An array-based representation Uses an array of tree nodes Requires the creation of a free list that keeps track of available nodes A pointer-based representation Nodes have two pointers that link the nodes in the tree 28

Copyright © 2007 Pearson Education, Inc. Publishing as Pearson Addison-Wesley. Ver Array-based ADT Binary Tree 29 Figure (a) A binary tree of names; (b) its array-based implementation

Copyright © 2007 Pearson Education, Inc. Publishing as Pearson Addison-Wesley. Ver Array-based Representation of a Complete Binary Tree If a binary tree is complete and remains complete A memory-efficient array-based implementation is possible AND attractive 30

Copyright © 2007 Pearson Education, Inc. Publishing as Pearson Addison-Wesley. Ver Array-based Representation of a Complete Binary Tree 31 Figure Level-by-level numbering of a complete binary tree Figure An array-based implementation of the complete tree in Figure 10-12

Copyright © 2007 Pearson Education, Inc. Publishing as Pearson Addison-Wesley. Ver Pointer-based ADT Binary Tree 32 Figure A pointer-based implementation of a binary tree

Copyright © 2007 Pearson Education, Inc. Publishing as Pearson Addison-Wesley. Ver Pointer-based ADT Binary Tree TreeException and TreeNode classes BinaryTree class Several constructors, including a Protected constructor whose argument is a pointer to a root node; prohibits client access Copy constructor that calls a private function to copy each node during a traversal of the tree Destructor 33

Copyright © 2007 Pearson Education, Inc. Publishing as Pearson Addison-Wesley. Ver Pointer-based ADT Binary Tree BinaryTree class (continued) isEmpty, getRootData, setRootData attachLeft, attachRight attachLeftSubtree, attachRightSubtree detachLeftSubtree, de tachRightSubtree getLeftSubtree, get RightSubtree Overloaded assignment operator 34

Copyright © 2007 Pearson Education, Inc. Publishing as Pearson Addison-Wesley. Ver Pointer-based ADT Binary Tree: Tree Traversals BinaryTree class (continued) Public methods for traversals so that visiting a node r emains on the client’s side of the wall void inorderTraverse(FunctionType visit); typedef void (*FunctionType)(TreeItemType& item); Protected methods, such as inorder, that enable the recursion void inorder(TreeNode *treeptr, FunctionType visit); inorderTraverse calls inorder, passing it a node pointer and the client-defined function visit 35

Copyright © 2007 Pearson Education, Inc. Publishing as Pearson Addison-Wesley. Ver Pointer-based ADT Binary Tree: Recursive Inorder Traversal Figure Contents of the implicit stack as treePtr progresses through a given tree during a recursive inorder traversal 36

Copyright © 2007 Pearson Education, Inc. Publishing as Pearson Addison-Wesley. Ver Pointer-based ADT Binary Tree: Nonrecursive Inorder Traversal An iterative method and an explicit stack can mimic the actions of a return from a recursive call to inorder 37 Figure Traversing (a) the left and (b) the right subtrees of 20

Copyright © 2007 Pearson Education, Inc. Publishing as Pearson Addison-Wesley. Ver Copying a Binary Tree 38 To copy a tree –Traverse it in preorder –Insert each item visited into a new tree –Use in copy constructor To deallocate a tree –Traverse in postorder –Delete each node visited –“Visit” follows deallocation of a node’s subtrees –Use in destructor Bitree.cpp

Copyright © 2007 Pearson Education, Inc. Publishing as Pearson Addison-Wesley. Ver The ADT Binary Search Tree The ADT binary tree is not suitable when you need to search for a particular item The ADT binary search tree is suitable for this task Record A group of related items, called fields, that are not necessarily of the same data type Field A data element within a record 39

Copyright © 2007 Pearson Education, Inc. Publishing as Pearson Addison-Wesley. Ver The ADT Binary Search Tree A data item in a binary search tree has a specially designated search key A search key is the part of a record that identifies it within a collection of records KeyedItem class Contains the search key as a data field and a method for accessing the search key Prevents modification of the search-key value once an item is created Has only a constructor for initializing the search key 40

Copyright © 2007 Pearson Education, Inc. Publishing as Pearson Addison-Wesley. Ver The ADT Binary Search Tree 41 Figure UML diagram for the class BinarySearchTree

Copyright © 2007 Pearson Education, Inc. Publishing as Pearson Addison-Wesley. Ver ADT Binary Search Tree: Search Algorithm Search the binary search tree bst for the item whose search key is searchKey search(in bst:BinarySearchTree, in searchKey:KeyType) if (bst is empty) Item not found else if (searchKey equals root item) Item is found else if(searchKey < root item) search(bst’s left subtree,searchKey) else // searchKey > root item search(bst’s right subtree,searchKey) 42

Copyright © 2007 Pearson Education, Inc. Publishing as Pearson Addison-Wesley. Ver ADT Binary Search Tree: Insertion Insert newItem into the binary search tree to which treePtr points insertItem(in treePtr:TreeNodePtr, in newItem:TreeItemType) if (Search stops at n’s left subtree) Make n’s leftChildPtr point to newItem else Make n’s rightChildPtr point to newItem 43

Copyright © 2007 Pearson Education, Inc. Publishing as Pearson Addison-Wesley. Ver ADT Binary Search Tree: Insertion 44 Figure (a) Insertion into an empty tree; (b) search terminates at a leaf; (c) insertion at a leaf

Copyright © 2007 Pearson Education, Inc. Publishing as Pearson Addison-Wesley. Ver ADT Binary Search Tree: Deletion Three possible cases for deleting the item in node N N is a leaf Set the pointer in N’s parent to NULL N has only one child Let N’s parent adopt N’s child N has two children 45

Copyright © 2007 Pearson Education, Inc. Publishing as Pearson Addison-Wesley. Ver ADT Binary Search Tree: Deletion Deleting the item in node N when N has two children (continued) Locate another node M that is easier to delete M is the leftmost node in N’s right subtree M will have no more than one child M’s search key is called the inorder successor of N’s search key Copy the item that is in M to N Remove the node M from the tree 46

Copyright © 2007 Pearson Education, Inc. Publishing as Pearson Addison-Wesley. Ver ADT Binary Search Tree: Retrieval and Traversal The retrieval operation can be implemented by refining the search algorithm Return the item with the desired search key if it exists Otherwise, throw TreeException Traversals for a binary search tree are the same as the traversals for a binary tree Theorem 10-1 The inorder traversal of a binary search tree T will visit its nodes in sorted search-key order 47 BST.cpp

Copyright © 2007 Pearson Education, Inc. Publishing as Pearson Addison-Wesley. Ver Height of a Binary Tree Theorem 10-2 A full binary tree of height h  0 has 2 h – 1 nodes Theorem 10-3 The maximum number of nodes that a binary tree of height h can have is 2 h – 1 Theorem 10-4 The minimum height of a binary tree with n nodes is  log 2 (n+1)  Complete trees and full trees have minimum height The maximum height of a binary tree with n nodes is n 48

Copyright © 2007 Pearson Education, Inc. Publishing as Pearson Addison-Wesley. Ver Height of a Binary Tree 49 Figure Counting the nodes in a full binary tree of height h

Copyright © 2007 Pearson Education, Inc. Publishing as Pearson Addison-Wesley. Ver The Efficiency of Binary Search Tree Operations The maximum number of comparisons required by any b. s. t. operation is the number of nodes along the longest path from root to a leaf—that is, the tree’s height The order in which insertion and deletion operations are performed on a binary search tree affects its height Insertion in random order produces a binary search tree that has near-minimum height 50

Copyright © 2007 Pearson Education, Inc. Publishing as Pearson Addison-Wesley. Ver The Efficiency of Binary Search Tree Operations 51 Figure The order of the retrieval, insertion, deletion, and traversal operations for the pointer-based implementation of the ADT binary search tree

Copyright © 2007 Pearson Education, Inc. Publishing as Pearson Addison-Wesley. Ver Applications Treesort Uses the ADT binary search tree to sort an array of records into search-key order Average case: O(n * log n) Worst case: O(n 2 ) 52

Copyright © 2007 Pearson Education, Inc. Publishing as Pearson Addison-Wesley. Ver Applications Algorithms for saving a binary search tree Saving a binary search tree and then restoring it to its original shape Uses preorder traversal to save the tree to a file Saving a binary search tree and then restoring it to a balanced shape Uses inorder traversal to save the tree to a file To restore, need the number of nodes in the tree 53

Copyright © 2007 Pearson Education, Inc. Publishing as Pearson Addison-Wesley. Ver The STL Search Algorithms binary_search Returns true if a specified value appears in the given sorted range lower_bound; upper_bound Returns an iterator to the first (one past the last) occurrence of a value equal_range Returns a pair of iterators: One is to the first occurrence of a value in the given sorted range, the other is to one past the last occurrence 54 STLBS.cpp

Copyright © 2007 Pearson Education, Inc. Publishing as Pearson Addison-Wesley. Ver n-ary Trees An n-ary tree is a general tree whose nodes can have no more than n children each A generalization of a binary tree 55 Figure A general tree Figure An implementation of the n -ary tree in Figure 10-38

Copyright © 2007 Pearson Education, Inc. Publishing as Pearson Addison-Wesley. Ver n-ary Trees A binary tree can represent an n-ary tree 56 Figure Another implementation of the tree in Figure Figure The binary tree that Figure represents

Copyright © 2007 Pearson Education, Inc. Publishing as Pearson Addison-Wesley. Ver Summary Binary trees provide a hierarchical organization of data The implementation of a binary tree is usually pointer-based If the binary tree is complete, an efficient array- based implementation is possible Traversing a tree to “visit”—that is, do something to or with—each node is useful You pass a client-defined “visit” function to the traversal operation to customize its effect on the items in the tree 57

Copyright © 2007 Pearson Education, Inc. Publishing as Pearson Addison-Wesley. Ver Summary The binary search tree allows you to use a binary search-like algorithm to search for an item having a specified value Binary search trees come in many shapes The height of a binary search tree with n nodes can range from a minimum of  log 2 (n + 1)  to a maximum of n The shape of a binary search tree determines the efficiency of its operations 58

Copyright © 2007 Pearson Education, Inc. Publishing as Pearson Addison-Wesley. Ver Summary An inorder traversal of a binary search tree visits the tree’s nodes in sorted search-key order The treesort algorithm efficiently sorts an array by using the binary search tree’s insertion and traversal operations 59

Copyright © 2007 Pearson Education, Inc. Publishing as Pearson Addison-Wesley. Ver Summary Saving a binary search tree to a file while performing An inorder traversal enables you to restore the tree as a binary search tree of minimum height A preorder traversal enables you to restore the tree to its original form 60