Tree and Graph Data Structures

Tree and Graph Data Structures

Learning Paths:
4 hours, 13 minutes CC

Learn the implementation details of tree and graph data structures, interview questions involving them, and the algorithms to solve them. This course builds on Bianca’s Practical Algorithms and Data Structures for Interviews courses. Unlike arrays, trees and graphs are non-linear. This allows for modeling things such as recommendation algorithms and social networks.

This course and others like it are available as part of our Frontend Masters video subscription.

Published: May 20, 2019
Get Unlimited Access Now
Table of Contents

Introduction

Trees

Tree Traversal

Graphs

Graph Search

Wrapping Up