代码搜索:论文查重
找到约 8,769 项符合「论文查重」的源代码
代码结果 8,769
www.eeworm.com/read/279550/10421068
txt poj 2524 并查集.txt
#include
#include
#include
#define NMAX 50010
//POJ 2524 并查集
int fa[NMAX];
int rel[NMAX];
int rank[NMAX];
int init(int num)
{
int i;
for(i=1;i
www.eeworm.com/read/279550/10421073
txt poj 2236 并查集.txt
#include
#include
#include
//POJ 2236 并查集
#define NMAX 1002
typedef struct point
{
int fa;//父节点
int sum;//跟该点在有效范围之内的点个数
int conn[NMAX];//跟该点在有效范围内的点
doub
www.eeworm.com/read/279550/10421077
txt noj 1087 并查集.txt
#include
#include
#include
//G++ and GCC
#define NMAX 100005
typedef struct line
{
int a;//线连接的两个点
int b;
bool has;//这条线是否没被删去
}line;
typedef struct a
www.eeworm.com/read/279550/10421080
txt poj 1988 并查集.txt
#include
#include
//POJ 1988 并查集
//疑问:所有集合的树的层数(初始都为2)最多不超过4?
#define NMAX 30005
typedef struct point
{
int fa;//父亲节点
int dis;//在集合里,该方块的上面有几个方块
int sum;//这个集合有几个方块
www.eeworm.com/read/439892/7697257
jpg 課程教材查詢.jpg
www.eeworm.com/read/301451/13859067
doc 并查集2.doc
www.eeworm.com/read/407780/11410804
txt poj 2524 并查集.txt
#include
#include
#include
#define NMAX 50010
//POJ 2524 并查集
int fa[NMAX];
int rel[NMAX];
int rank[NMAX];
int init(int num)
{
int i;
for(i=1;i
www.eeworm.com/read/407780/11410805
txt poj 2236 并查集.txt
#include
#include
#include
//POJ 2236 并查集
#define NMAX 1002
typedef struct point
{
int fa;//父节点
int sum;//跟该点在有效范围之内的点个数
int conn[NMAX];//跟该点在有效范围内的点
doub
www.eeworm.com/read/407780/11410806
txt noj 1087 并查集.txt
#include
#include
#include
//G++ and GCC
#define NMAX 100005
typedef struct line
{
int a;//线连接的两个点
int b;
bool has;//这条线是否没被删去
}line;
typedef struct a
www.eeworm.com/read/407780/11410807
txt poj 1988 并查集.txt
#include
#include
//POJ 1988 并查集
//疑问:所有集合的树的层数(初始都为2)最多不超过4?
#define NMAX 30005
typedef struct point
{
int fa;//父亲节点
int dis;//在集合里,该方块的上面有几个方块
int sum;//这个集合有几个方块