Adjacency Matrix

Check Number of Isolated Vertices & Pendent Vertices from Adjacency Matrix

This is a simple C source code written in gcc paltform (Ubuntu, Linux). It checks that how many Isolated vertices & pendent vertices are contained in the graph represented by the adjacency matrix. Isolated vertex has degree zero & pendent vertex has degree one. Hope it will help others. Thanks.

Check Number of Self-loop & Parallel Edges From Adjacency Matrix

Hello, This is a simple C source code written in gcc paltform (Ubuntu, Linux). It tests that how many self-loop & parallel edges are contained in the graph represented by the adjacency matrix. Also it checks that which vertices contain only self-loop. Self-loop is an edge which has the same initial & termination point.

Testing Degree of Vertices Along with Degree of Graph from Adjacency Matrix

Hello, This is a simple C source code written in gcc paltform (Ubuntu, Linux). It tests the degree of all vertices along with the degree of graph from text file of adjacency matrix. Actually This reads a text file & then checks the above condition. Hope, It will help others. Thanks.