2021-02-02

在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述

度序列Degree Sequence

Author: Aric Hagberg (hagberg@lanl.gov)

Date: 2004-11-03 08:11:09 -0700 (Wed, 03 Nov 2004)

Revision: 503

Copyright © 2004-2019 by

Aric Hagberg hagberg@lanl.gov

Dan Schult dschult@colgate.edu

Pieter Swart swart@lanl.gov

chen xiang yu cxy_0809@qq.com

All rights reserved.

BSD license.

import matplotlib.pyplot as plt
from networkx import nx

z = [5, 5, 5, 5, 4, 4, 4, 4,3, 3, 3, 3, 2, 2, 2, 1, 1, 1,1]
print(nx.is_graphical(z))

print(“Configuration model”)
G = nx.configuration_model(z) # configuration model
degree_sequence = [d for n, d in G.degree()] # degree sequence
print(“Degree sequence %s” % degree_sequence)
print(“Degree histogram”)
hist = {}
for d in degree_sequence:
if d in hist:
hist[d] += 1
else:
hist[d] = 1
print(“degree #nodes”)
for d in hist:
print(’%d %d’ % (d, hist[d]))

nx.draw(G)
plt.show()
在这里插入图片描述
在这里插入图片描述

评论 3
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值