在Python中打印图表最简单的方法是什么?即我想要想象出图表的最大集团。
我目前的数据结构是:
adjacency_matrix = [[False, True, False, ...],
[True, False, True, ...],
..]
adjacency_set = [[45, 2], [1, 32], ...]
max_clique = [23, 143, 1, 2, 42, 12, 3, ...] # the vertices in the max clique
我会使用matplotlib来做这件事吗?