摘要:
不相交集类型声明及函数实现: /* disjoint_set.h */#ifndef _DISJOINT_SET_H#define _DISJOINT_SET_H#define NUMSETS 5typedef int disjoint_set[NUMSETS + 1];typedef int set_type;typedef int element_type;void initia... 阅读全文
posted @ 2014-04-22 07:56
ITtecman
阅读(402)
评论(0)
推荐(0)