Binary Search Tree (BST): Deletion Function (Part 2)

in #python7 years ago

In this second part in our two videos covering the Binary Search Tree, we'll cover the only part omitted from our prior lesson; the Deletion Function. In the beginning of the video, we'll introduce some background and the underlying idea and later we'll return to our code from the last video and add in the Deletion Function.

(PYTHON 2)
► Code for this lesson: https://github.com/bfaure/Python_Data_Structures/blob/master/Binary_Search_Tree/main.py

(PYTHON 3)
► Code for this lesson: https://github.com/bfaure/Python3_Data_Structures/blob/master/Binary_Search_Tree/main.py

► Original Binary Search Tree lesson

► BST Validator Function


► Video series covering various common/useful algorithms:
https://www.youtube.com/playlist?list=PLEJyjB1oGzx2h88Tj90B5_HadLq339Cso

► Video series covering GUI development in Python (WIP):

References: