數據結構與算法-圖論(一)-並查集的應用

數據結構與算法-圖論(一)-並查集 關於並查集的理解可以看一下這個csdn博客:https://blog.csdn.net/xr469786706/article/details/86494565 並查集的操作如下: int pre[1000]; int find(int x){ int r = x; while(r != pre[r]){ r = pre[r];
相關文章
相關標籤/搜索