reading-notes

Code Fellows Notes

View the Project on GitHub stephnitis/reading-notes

GRAPHS

Common standard analogy for graphs:

A social network. Imagine your peer group. You are connected to your friends and family, but not all of your friends and family are connected to each other and you are likely not connected to all of their friends and family.

Applications:

When edges have values/cost assigned to them, we say we have a weighted graph. If the weight is absent, we can assume it’s 1.

Weighted graphs have many applications depending on the domain where you need to solve a problem. To name a few:

Airline Traffic

GPS Navigation

Networks routing

Other real world applications:

References: