minux_sufe
minux_sufe
全部文章
分类
算法(2)
题解(28)
归档
标签
去牛客网
登录
/
注册
Code Rush
0x00
全部文章
(共2篇)
无向图判断并输出Euler loop
#include <iostream> #include <cstring> using namespace std; const int N=55; int g[N][N]; int d[N]; int n, T; void dfs(int u){ for(in...
欧拉回路
无向图
2020-07-07
0
565
欧拉回路判定
#include <bits/stdc++.h> using namespace std; const int N=100005; const int M=400005; int type, n, m; int head[N], E=1; // 边的编号从1开始 struct Edg...
欧拉回路
2020-07-06
0
521