摘要: // disjoint_set.cpp : 定义控制台应用程序的入口点。 // #include "stdafx.h" #include #define noFind -1 using namespace std; typedef struct node *Position; typedef struct node *Head; //链表节点,对于头节点,key存放的的是链表的长度,普通节点... 阅读全文
posted @ 2017-04-17 19:03 lineaar 阅读(269) 评论(0) 推荐(0) 编辑