CntDegNodes (SWIG)ΒΆ

CntDegNodes(Graph, NodeDeg)

Returns the number of nodes in Graph with degree NodeDeg.

Parameters:

  • Graph: graph (input)

    A Snap.py graph or a network.

  • NodeDeg: int (input)

    The degree of the nodes to be counted.

Return value:

  • int

    The number of nodes in Graph with degree NodeDeg.

The following example shows how to get the number of nodes with degree 20 in TNGraph, TUNGraph, and TNEANet:

import snap

Graph = snap.GenRndGnm(snap.PNGraph, 100, 1000)
Count = snap.CntDegNodes(Graph, 10)
print("Directed Graph: Count of nodes with degree 10 is %d" % Count)

UGraph = snap.GenRndGnm(snap.PUNGraph, 100, 1000)
Count = snap.CntDegNodes(UGraph, 20)
print("Undirected Graph: Count of nodes with degree 20 is %d" % Count)

Network = snap.GenRndGnm(snap.PNEANet, 100, 1000)
Count = snap.CntDegNodes(Network, 5)
print("Network Graph: Count of nodes with degree 5 is %d" % Count)