GetMxDegNId (SWIG)ΒΆ
-
GetMxDegNId
(Graph)
Returns the node id of a randomly chosen node from all the nodes in Graph with the maximum degree.
Parameters:
- Graph: graph (input)
A Snap.py graph or a network.
Return value:
- int
The node id for a randomly chosen node from all the nodes in Graph with the maximum degree.
The following example shows how to use GetMxDegNId()
with
TNGraph
, TUNGraph
, and TNEANet
:
import snap
Graph = snap.GenRndGnm(snap.PNGraph, 100, 1000)
NId1 = snap.GetMxDegNId(Graph)
print(NId1)
UGraph = snap.GenRndGnm(snap.PUNGraph, 100, 1000)
NId2 = snap.GetMxDegNId(UGraph)
print(NId2)
Network = snap.GenRndGnm(snap.PNEANet, 100, 1000)
NId3 = snap.GetMxDegNId(Network)
print(NId3)