Returns the number of nodes in each core of order K (where K=0, 1, ...). Stores pairs (K, number of nodes) in CoreIdSzV.
Parameters:
A Snap.py graph or directed graph.
A vector of (order, number of nodes of the given order) pairs.
Return value:
The number of cores.
The following example shows how to get the number of nodes for a given k-core in TNGraph, TUNGraph, and TNEANet:
import snap
Graph = snap.GenRndGnm(snap.PNGraph, 100, 1000)
CoreIDSzV = snap.TIntPrV()
kValue = snap.GetKCoreNodes(Graph, CoreIDSzV)
for item in CoreIDSzV:
print "order: %d nodes: %d" % (item.GetVal1(), item.GetVal2())
UGraph = snap.GenRndGnm(snap.PUNGraph, 100, 1000)
CoreIDSzV = snap.TIntPrV()
kValue = snap.GetKCoreNodes(UGraph, CoreIDSzV)
for item in CoreIDSzV:
print "order: %d nodes: %d" % (item.GetVal1(), item.GetVal2())
Network = snap.GenRndGnm(snap.PNEANet, 100, 1000)
CoreIDSzV = snap.TIntPrV()
kValue = snap.GetKCoreNodes(Network, CoreIDSzV)
for item in CoreIDSzV:
print "order: %d nodes: %d" % (item.GetVal1(), item.GetVal2())