摘要: 1 class Network { 2 private : 3 struct edge { 4 int to, w, nxt ; 5 edge ( ) { } 6 edge ( int to, int w, int nxt ) : to ( to ), w ( w ), nxt ( nxt ) { 阅读全文
posted @ 2017-07-11 08:36 Lazer2001 阅读(171) 评论(0) 推荐(0)