Python实现两个图的交运算、并运算、差运算、对称差运算、联运算、积图、合成图
【Python实现两个图的交运算、并运算、差运算、对称差运算、联运算、积图、合成图】Python实现两个图的交运算、并运算、差运算、对称差运算、联运算、积图、合成图
用python随机生成两张图G1,G2
文章图片
文章图片
import networkx as nx
import matplotlib.pyplot as plt
import numpy as np
from numpy import randomG1 = nx.Graph()
Matrix1 = np.array(random.randint((2),size=(50,50)))
#print(Matrix)
for i in range(len(Matrix1)):
for j in range(len(Matrix1)):
if Matrix1[i, j]!= 0:
G1.add_edge(i, j)
nx.draw_networkx(G1)
plt.title("G1")
plt.show()G2= nx.Graph()
Matrix2 = np.array(random.randint((2),size=(50,50)))
for i in range(len(Matrix2)):
for j in range(len(Matrix2)):
if Matrix2[i,j]!=0:
G2.add_edge(i, j)
nx.draw_networkx(G2)
plt.title("G2")
plt.show()np.union1d(Matrix1,Matrix2)
plt.title("G1与G2的并运算")
plt.show()
np.intersect1d(Matrix1,Matrix2, assume_unique=True)
plt.title("G1与G2的交运算")
plt.show()
np.setdiff1d(Matrix1,Matrix2, assume_unique=True)
plt.title("G1与G2的差运算")
plt.show()
np.setdiff1d(Matrix1,Matrix2, assume_unique=True)
plt.title("G2与G1的差运算")
plt.show()
Matrix1^Matrix2
plt.title("G1与G2的对称差运算")
plt.show()
Matrix1+Matrix2
plt.title("G1与G2的联运算")
plt.show()
Matrix1*Matrix2
plt.title("G1与G2的积运算")
plt.show()
Matrix1[Matrix2]
plt.title("G1与G2的合成运算")
plt.show()
文章图片
文章图片
文章图片
文章图片
文章图片
文章图片
文章图片
文章图片
推荐阅读
- 关于QueryWrapper|关于QueryWrapper,实现MybatisPlus多表关联查询方式
- MybatisPlus使用queryWrapper如何实现复杂查询
- python学习之|python学习之 实现QQ自动发送消息
- 逻辑回归的理解与python示例
- 孩子不是实现父母欲望的工具——林哈夫
- opencv|opencv C++模板匹配的简单实现
- Node.js中readline模块实现终端输入
- python自定义封装带颜色的logging模块
- 【Leetcode/Python】001-Two|【Leetcode/Python】001-Two Sum
- java中如何实现重建二叉树