Graph data structure cheat sheet for coding interviews.

Tuan Nhu Dinh
Towards Data Science
6 min readApr 11, 2020

--

This blog is a part of my “15 days cheat sheet for hacking technical interviews at big tech companies”. In this blog, I won’t go into detail about graph data structure, but I will summarise must-to-know graph algorithms to solve coding interview questions.

Graph Data Structure

A graph is a non-linear data structure consisting of vertices (V) and edges (E).

--

--