- 博客(1)
- 收藏
- 关注
原创 图的STL邻接表表示
#include #include #include using namespace std; const int maxn = 1000; int i, j, w; int main() { //邻接表 //STL模板实现 struct edgenode { int to; int w; }; vectormap[maxn]; //输入 for (int m
2016-04-08 22:40:18 1037
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人