静态邻接表
摘要:1 #include 2 #include 3 #include 4 const long lmax=10; //边的数量 5 const long mmax=10; //点的数量 6 struct node //静态邻接表用每个node表示每一条边 7 { 8 int v; //边的...
阅读全文
posted @ 2013-01-25 18:42
posted @ 2013-01-25 18:42