From the course: Python Data Structures: Trees

Unlock the full course today

Join today to access over 22,600 courses taught by industry experts or purchase this course individually.

Next steps with data structures

Next steps with data structures - Python Tutorial

From the course: Python Data Structures: Trees

Start my 1-month free trial

Next steps with data structures

- [Instructor] So congratulations. You've covered the basics of nearly everything there is to do with trees, or a tree rather. Our good friend, the binary search tree. Don't worry, most trees are very similar to this one. You traverse them using very similar code, you insert and delete nodes. The rules might be a little bit different, but the concepts and lingo are mostly the same. There are trees with many children per node, trees that have additional properties that modify their rebalancing strategies, trees where you might be more likely to reach one child node, than another child node. Maybe you'll invent your own tree. But where to go from here? So, if you're looking for an overview of other data structures, particularly in Python, there are a lot of really great LinkedIn Learning videos. I recommend the video on linked lists by Erin Allard as good preparation for this course. But if you haven't seen it yet and you…

Contents