This document contains detailed notes from Lecture 9 of the CO2412 course on Computational Thinking. The lecture provides an in-depth exploration of Binary Search Trees (BSTs) and Heaps, two fundamental data structures in computer science.
University of Central Lancashire Preston (UClan)
Onbekend
Computational Thinking (CO2412)
Alle documenten voor dit vak (19)
Verkoper
Volgen
BpoBpo
Ontvangen beoordelingen
Voorbeeld van de inhoud
CO2412: Computational Thinking
Lecture 9
Introduction to Binary Search Trees (BST)
1. Binary Tree Structure
o A Binary Tree is a hierarchical structure where each node has a
maximum of two children: a left child and a right child.
o Key Components:
Root Node: The topmost node in the tree.
Leaf Nodes: Nodes without children.
Edges: Connections between nodes.
Binary Search Trees (BST)
1. Definition and Properties
o A Binary Search Tree is a type of binary tree where each node
follows a specific order:
The left child’s value is less than its parent node’s value.
The right child’s value is greater than its parent node’s value.
o This property allows for efficient searching, insertion, and deletion
operations.
2. Searching in a BST
o To find a value, start at the root and compare the value with the
node’s value:
If the value is less, move to the left child.
If the value is greater, move to the right child.
Repeat this process until the value is found or the subtree is
exhausted.
Example:
To find the value 8:
Start at the root (9), move left (6), then move right (8) to find
the value.
Voordelen van het kopen van samenvattingen bij Stuvia op een rij:
Verzekerd van kwaliteit door reviews
Stuvia-klanten hebben meer dan 700.000 samenvattingen beoordeeld. Zo weet je zeker dat je de beste documenten koopt!
Snel en makkelijk kopen
Je betaalt supersnel en eenmalig met iDeal, creditcard of Stuvia-tegoed voor de samenvatting. Zonder lidmaatschap.
Focus op de essentie
Samenvattingen worden geschreven voor en door anderen. Daarom zijn de samenvattingen altijd betrouwbaar en actueel. Zo kom je snel tot de kern!
Veelgestelde vragen
Wat krijg ik als ik dit document koop?
Je krijgt een PDF, die direct beschikbaar is na je aankoop. Het gekochte document is altijd, overal en oneindig toegankelijk via je profiel.
Tevredenheidsgarantie: hoe werkt dat?
Onze tevredenheidsgarantie zorgt ervoor dat je altijd een studiedocument vindt dat goed bij je past. Je vult een formulier in en onze klantenservice regelt de rest.
Van wie koop ik deze samenvatting?
Stuvia is een marktplaats, je koop dit document dus niet van ons, maar van verkoper BpoBpo. Stuvia faciliteert de betaling aan de verkoper.
Zit ik meteen vast aan een abonnement?
Nee, je koopt alleen deze samenvatting voor €4,31. Je zit daarna nergens aan vast.