Graph Theory Introduction

Graph Theory Algorithms Graph Theory Algorithms
14 minutes
Share the link to this page
Copied
  Completed

Transcript

Hello and welcome. My name is William and I'm super excited to bring to you this video series focused on graph theory. graph theory is one of my absolute favorite topics in computer science, we're going to see a lot of very awesome algorithms. The whole field is very diverse and hugely applicable to real world applications. I think everybody should be able to learn, love and enjoy graph theory. These first few videos are going to be a ramp up videos to introduce the topics of how we store represent and traverse graphs on a computer.

By the way, this whole video series will be taking on a computer science point of view of graph theory rather than a mathematical one. So we won't be covering proofs, and so on per se. Instead, we'll be looking at algorithm implementation details and code. So what is graph theory? In essence, it is the study of properties and applications of graphs, which common folk or non mathematical folks call networks. This is a very broad topic, and my goal with this video series is to teach you how to apply graph theory to real world situations.

Graphs can be used to represent almost any problem which makes them so interesting, because they pop up absolutely everywhere. A simple problem that can be phrased as a graph theory problem might be given the constraints in this picture, how many different sets of clothes Can I make choosing an article from each category? Of course, this can be phrased and solved using only mathematics. But the advantage to graph theory is that it allows us to visualize the problem using nodes to represent an article of clothing. edges represent relationships between them. Another canonical example of a graph theory problem is a social network of friends.

A graph representation enables us to answer interesting questions such as how many friends this person acts have, or how many degrees of separation are there between person x and person y. Now, we have talked about different types of graphs. There are many different types of graph representations. And it's really important, I mean really important to be able to recognize what type of graph you're working with, and especially when you're programming and trying to solve a particular problem. This first type of graph is an undirected graph. It's the most simple kind of graph you'll encounter.

And it is where edges have no orientation. That is, if there's an edge from node you to note V, it is identical to the edge from v to v For instance in the following graph, nodes are cities and edges represent bi directional roads. Since if you drive from one city to another, you can always retrace your steps by driving the other way. In contrast to undirected graphs, there are also directed graphs, sometimes called digraphs. In these graphs, you've guessed it, the edges are directed. So if we have an edge from u to v, then you can only go from node A to node v, not the other way around.

In this graph, you can see that the edges are directed because of the arrowheads on the edges between nodes. This graph could represent people who bought each other gifts. So an incoming edge represents receiving a gift and an outgoing edge represents giving a gift. Therefore person e in this graph bought person D gift Person A bought them themselves and person be a gift and person f about nobody any gifts and received none. So far, we've only seen unweighted graphs, but edges on graphs can contain weights to represent arbitrary values such as cost, distance, quantity, you name it. weighted graphs come in both directed and undirected flavors.

As a side note, I will usually denote an edge of a graph as a triplet u, v w to indicate where n edges coming from, where it's going to and what its weight is. Of course, with this notation, I also need to specify whether the graph is directed or undirected. Next up, I just want to have a quick chat about special types of graphs and graph theory. There are so many different types of graphs that I only had two Select few which will be most relevant for this upcoming video series. The most important type of special graph is definitely the tree. A tree is simply an undirected graph with no cycles.

There are several equivalent definitions of a tree such as a graph with n nodes and n minus one edges. All the graphs below are trees yes, even the leftmost one since it has no cycles. A related but totally different type of graph is a rooted tree. The distinction here is that a rooted tree has a designated root node, where every edge either points away from or towards the root node. When edges point away from the root node. The graph is called an absence or an out tree and an anti arborescens or entry otherwise, out trees are by far more common Then entries from what I've observed is also fairly common for people to refer to a rooted tree simply as a tree instead of an in or out tree, but there is an important distinction there.

Next are directed acyclic graphs. These are graphs with directed edges and no cycles. these graphs are very important and fairly common in computer science actually, since they often represent structures with dependencies, such as a scheduler, a build system, a compiler maybe, or perhaps more relatable University class prerequisites. There are several efficient algorithms we'll be looking at to deal specifically with directed a cyclic graphs, such as how to find the shortest path and produce a topological ordering of nodes. A topological ordering of nodes is an ordering of nodes that tells you how to proceed says the nodes in the graph so you don't perform a task before first having completed all its dependencies. For example, a topological ordering of class prerequisites would tell you to take intro biology and intro chemistry before taking a class on say genomics.

This next type of special graph is a bipartite graph. It is one whose vertices can be split into two independent groups, u and v such that every edge connects between u and v. This is just a fancy way of saying that the graph is two colorable or that there are no odd length cycles and graph often a problem we like to ask is what is the maximum matching we can create on a bipartite graph? Suppose white nodes are jobs and red nodes are people then we can ask how many people can be matched to jobs. In this case, there are a lot of edges in each graph. So I think the answer for both is four. But in general, it's not so easy if there are less edges, tougher constraints and more conflicts.

Bipartite graphs also play a critical role in the field of network flow, which we will talk about later. This last type of graph is a complete graph is one where there is a unique edge between every pair of nodes in the graph. A complete graph with n vertices is denoted as the graph case sub and I have listed k one through k six on the bottom and you can easily see how this scales when we add more notes. Complete graphs are often seen as the worst case possible graph you can possibly encounter because of how many edges there are. So if you want to test your algorithm for performance, a complete graph is an easy way to start. One thing we're going to have to be really cognizant about is how we're actually representing our graphs on the computer.

This isn't just what type of graph it is, but what type of data structure it. But what type of data structure are we representing our graph with. And this can have a huge impact on performance. The simplest way is inside a 2d adjacency matrix. The idea is that the cell m ij represents the edge weight of going from node i to node j. So in the graph below, there are four nodes.

So I create a four by four matrix and populate the graph with the edge weights. If you look at the edge weight from node C to know D, you'll see that has an adjective to. So in a row three and column four of the matrix there is a value of two. Note that is often assumed that the edge of going from a node to itself has a cost of zero, which is why the diagonal of the matrix has all zero values. This matrix form has several advantages. First, that it's very space efficient for dense graphs.

Those graphs with a lot of edges that add weight lookup can be found in constant time, which is quite nice. And lastly, I would argue that it is the simplest form of graph representation you can have. On the downside however, the main reason people don't go for the adjacency matrix as their first pick, is because it requires v squared space which is well a lot of space in practice graphs with 10,000 nodes are more start to become infeasible very quickly. The other issue with adjacency matrix is that it requires v squared work to iterate over all the edges of your graph. This is fine for dense graphs with lots of edges, but it isn't so great for sparse graphs, since most cells will be empty. The main alternative to the adjacency matrix is the adjacency list, which is a way to represent a graph as a map of nodes to list of edges.

The idea is that each node tracks have its outgoing edges. For example, node C has three outgoing edges. So the map entry for C will track the edge from seat a with cost for the Add from C to B with cost one and edge from C to D with caste to notice that in the list of edges, we only Need to track two things, the node we're going to and the cost to get there, we don't need to keep track of where we came from, because that's already implicitly known. The nice thing about adjacency lists is that it is great for sparse graphs because it only tracks the edges that you have, and doesn't allocate additional memory that you might not use like the adjacency matrix does. This also means it's efficient when iterating over all the edges. The main disadvantage to using an adjacency list is that it is less space efficient on denser graphs.

Another subtle disadvantage is that it takes big O of time to access a specific edges weight, although in practice, you rarely or if ever actually need to do this. The last representation I want to talk about is the edge list. an edge list is a way to represent a question Graphs simply as an unordered list of edges. Basically, it's exactly what it sounds like a list of edges. Assume that the notation for any triplet u, v w means the cost from node you to node v is W. So for this graph, the edge list is simply a list of six edges represented as those triplets. This representation is very simple.

However, it lacks structure and that's why it is seldomly used. advantage to the Angeles is is great for sparse graphs. iterating over all the edges is super easy and the structure is simple. The downside is that edge lookup can be slow and you can run into memory issues on large graphs. Well, that's it for this video. Next video, we're going to be talking about graph theory problems.

So thanks again. for watching and please subscribe for more mathematics and computer science videos. Cheers

Sign Up

Share

Share with friends, get 20% off
Invite your friends to LearnDesk learning marketplace. For each purchase they make, you get 20% off (upto $10) on your next purchase.