摘要:
#include using namespace std; const int maxn=1e4+7; int n,m,cot,sum; struct edge { int u,v,w; bool operator <(const edge &b)const{ return w<b.w; } }g[maxn]; int f[maxn]; int Find... 阅读全文
摘要:
///链表 #include <bits/stdc++.h> using namespace std; typedef struct aa { int date; struct aa *next; } sq,*List; void tailcreat(List &l,int n)//尾插 { int 阅读全文