CntInDegNodes¶
-
CntInDegNodes
(NodeInDeg)¶
A graph method that returns the number of nodes in a graph with in-degree NodeInDeg.
Parameters:
- NodeInDeg: int
The in-degree of the nodes to be counted.
Return value:
- int
The number of nodes in a graph with in-degree NodeInDeg.
The following example shows how to get the number of nodes with in-degrees 10, 20 and 5 in
TNGraph
, TUNGraph
, and TNEANet
:
import snap
Graph = snap.GenRndGnm(snap.TNGraph, 100, 1000)
Count = Graph.CntInDegNodes(10)
print("Directed Graph: Count of nodes with in-degree 10 is %d" % Count)
UGraph = snap.GenRndGnm(snap.TUNGraph, 100, 1000)
Count = UGraph.CntInDegNodes(20)
print("Undirected Graph: Count of nodes with in-degree 20 is %d" % Count)
Network = snap.GenRndGnm(snap.TNEANet, 100, 1000)
Count = Network.CntInDegNodes(5)
print("Network Graph: Count of nodes with in-degree 5 is %d" % Count)