摘要: \({\mathtt{1}}\). gcd(最大公因数) 点击查看代码 ll gcd(ll a,ll b) { if(b==0) return a; return gcd(b, a%b); } \({\mathtt{2}}\). 链式前向星 点击查看代码 int head[100005], edge 阅读全文
posted @ 2024-08-21 17:19 zhouyiran2011 阅读(9) 评论(0) 推荐(0) 编辑