图论基础树和图的存储模板树是特殊的图,无向图是特殊的有向图,所以只需要考虑有向图的存储。
图的存储(邻接表) 适用于稀疏图
#include <iostream>
#include <algorithm>
#include &
2021-11-19