算法筆記__並查集

先給出源代碼和輸入輸出測試結果: #include<iostream> using namespace std; const int N = 110; int father[N];//存放父親節點 bool isBoot[N];//標記時否爲根節點 int findFather(int x) { int a = x; while (x != father[x]) x = father[x]
相關文章
相關標籤/搜索