Presentation is loading. Please wait.

Presentation is loading. Please wait.

Chapter 4: Trees Binary Search Trees

Similar presentations


Presentation on theme: "Chapter 4: Trees Binary Search Trees"— Presentation transcript:

1 Chapter 4: Trees Binary Search Trees
Mark Allen Weiss: Data Structures and Algorithm Analysis in Java Chapter 4: Trees Binary Search Trees Lydia Sinapova, Simpson College

2 Binary Search Trees Definitions Operations and complexity
Advantages and disadvantages AVL Trees Single rotation Double rotation Splay Trees Multi-Way Search

3 Definitions Each node – a record with a key and a value a left link
a right link All records with smaller keys – left subtree All records with larger keys – right subtree

4 Example

5 Operations Search - compare the values and proceed either to the left or to the right Insertion - unsuccessful search - insert the new node at the bottom where the search has stopped Deletion - replace the value in the node with the smallest value in the right subtree or the largest value in the left subtree. Retrieval in sorted order – inorder traversal

6 Complexity Logarithmic, depends on the shape of the tree
In the worst case – O(N) comparisons

7 Advantages of BST Simple Efficient Dynamic
One of the most fundamental algorithms in CS The method of choice in many applications

8 Disadvantages of BST The shape of the tree depends on the order of insertions, and it can be degenerated. When inserting or searching for an element, the key of each visited node has to be compared with the key of the element to be inserted/found. Keys may be long and the run time may increase much. Animation

9 Improvements of BST Keeping the tree balanced:
AVL trees (Adelson - Velskii and Landis) Balance condition: left and right subtrees of each node can differ by at most one level. It can be proved that if this condition is observed the depth of the tree is O(logN). Reducing the time for key comparison: Radix trees - comparing only the leading bits of the keys (not discussed here)


Download ppt "Chapter 4: Trees Binary Search Trees"

Similar presentations


Ads by Google