並查集模板

2021-08-28 23:17:28 字數 581 閱讀 8032

#define n 1000

int pre[n]; //每個結點

int rank[n]; //樹的高度

int init(int n) //對n個結點初始化

}//查詢根節點也可以使用while迴圈

int find(int x) //查詢結點x的根結點

return find(pre[x]); //遞迴查詢}

//改進查詢演算法:完成路徑壓縮,將x的上級直接變為根結點,那麼樹的高度就會大大降低

int find_pre(int x) //查詢結點x的根結點

return pre[x] = find_pre(pre[x]); //路徑壓縮}

bool is_same(int x, int y) //判斷兩個結點是否連通

void unite(int x,int y)

if(rank[rootx] > rank[rooty])

else

pre[rootx] = rooty;

}}int main()

並查集模板

來自lifeng wang http hi.baidu.com fandywang jlu 前輩06年寫的東西,追隨前人足跡繼續努力。並查集的一些題目和相關解題報告 poj 1611 the suspects 最基礎的並查集 poj 2524 ubiquitous religions 最基本的並查集...

並查集模板

普通並查集 define max size 100005 int pa max size 儲存有向圖的邊 void init 初始化 該函式可以根據具體情況儲存和初始化需要的內容 int findset int a 不帶路勁壓縮 return a void union nodes int a,int...

並查集模板

codevs 2597 團夥 題目描述 description 1920年的芝加哥,出現了一群強盜。如果兩個強盜遇上了,那麼他們要麼是朋友,要麼是敵人。而且有一點是肯定的,就是 我朋友的朋友是我的朋友 我敵人的敵人也是我的朋友。兩個強盜是同一團夥的條件是當且僅當他們是朋友。現在給你一些關於強盜們的資...