Skip to content

Instantly share code, notes, and snippets.

@rasendubi
Created February 7, 2013 14:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rasendubi/4731139 to your computer and use it in GitHub Desktop.
Save rasendubi/4731139 to your computer and use it in GitHub Desktop.
5 7
2 1
2 3
4 1
3 4
3 5
5 4
5 5
Adjacency Matrix
0 0 0 0 0
1 0 1 0 0
0 0 0 1 1
1 0 0 0 0
0 0 0 1 1
Incedence Matrix
-1 0 -1 0 0 0 0
1 1 0 0 0 0 0
0 -1 0 1 1 0 0
0 0 1 -1 0 -1 0
0 0 0 0 -1 1 2
Vertex Degree
1 2
2 2
3 3
4 3
5 4
Vertex InputDegree
1 2
2 0
3 1
4 2
5 2
Vertex OutputDegree
1 0
2 2
3 2
4 1
5 2
Graph isn't homogeneous
Isolated verticies
List is empty
Leaf verticies
List is empty
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment