|
50 | 50 |
|
51 | 51 | <!-- 这里可写通用的实现逻辑 -->
|
52 | 52 |
|
| 53 | +并查集模板题。 |
| 54 | + |
| 55 | +模板 1——朴素并查集: |
| 56 | + |
| 57 | +```python |
| 58 | +# 初始化,p存储每个点的父节点 |
| 59 | +p = list(range(n)) |
| 60 | + |
| 61 | +# 返回x的祖宗节点 |
| 62 | +def find(x): |
| 63 | + if p[x] != x: |
| 64 | + # 路径压缩 |
| 65 | + p[x] = find(p[x]) |
| 66 | + return p[x] |
| 67 | + |
| 68 | +# 合并a和b所在的两个集合 |
| 69 | +p[find(a)] = find(b) |
| 70 | +``` |
| 71 | + |
| 72 | +模板 2——维护 size 的并查集: |
| 73 | + |
| 74 | +```python |
| 75 | +# 初始化,p存储每个点的父节点,size只有当节点是祖宗节点时才有意义,表示祖宗节点所在集合中,点的数量 |
| 76 | +p = list(range(n)) |
| 77 | +size = [1] * n |
| 78 | + |
| 79 | +# 返回x的祖宗节点 |
| 80 | +def find(x): |
| 81 | + if p[x] != x: |
| 82 | + # 路径压缩 |
| 83 | + p[x] = find(p[x]) |
| 84 | + return p[x] |
| 85 | + |
| 86 | +# 合并a和b所在的两个集合 |
| 87 | +if find(a) != find(b): |
| 88 | + size[find(b)] += size[find(a)] |
| 89 | + p[find(a)] = find(b) |
| 90 | +``` |
| 91 | + |
| 92 | +模板 3——维护到祖宗节点距离的并查集: |
| 93 | + |
| 94 | +```python |
| 95 | +# 初始化,p存储每个点的父节点,d[x]存储x到p[x]的距离 |
| 96 | +p = list(range(n)) |
| 97 | +d = [0] * n |
| 98 | + |
| 99 | +# 返回x的祖宗节点 |
| 100 | +def find(x): |
| 101 | + if p[x] != x: |
| 102 | + t = find(p[x]) |
| 103 | + d[x] += d[p[x]] |
| 104 | + p[x] = t |
| 105 | + return p[x] |
| 106 | + |
| 107 | +# 合并a和b所在的两个集合 |
| 108 | +p[find(a)] = find(b) |
| 109 | +d[find(a)] = distance |
| 110 | +``` |
| 111 | + |
| 112 | +对于本题,先遍历所有字符串对,判断两字符串是否相似,若相似,则将两字符串合并到同一个集合中,从而形成并查集。最后统计集合的数量即可。 |
| 113 | + |
53 | 114 | <!-- tabs:start -->
|
54 | 115 |
|
55 | 116 | ### **Python3**
|
56 | 117 |
|
57 | 118 | <!-- 这里可写当前语言的特殊实现逻辑 -->
|
58 | 119 |
|
59 | 120 | ```python
|
60 |
| - |
| 121 | +class Solution: |
| 122 | + def numSimilarGroups(self, strs: List[str]) -> int: |
| 123 | + n = len(strs) |
| 124 | + p = list(range(n)) |
| 125 | + |
| 126 | + def find(x): |
| 127 | + if p[x] != x: |
| 128 | + p[x] = find(p[x]) |
| 129 | + return p[x] |
| 130 | + |
| 131 | + def check(a, b): |
| 132 | + cnt = 0 |
| 133 | + for i, c in enumerate(a): |
| 134 | + if c != b[i]: |
| 135 | + cnt += 1 |
| 136 | + return cnt <= 2 |
| 137 | + |
| 138 | + for i in range(n): |
| 139 | + for j in range(i + 1, n): |
| 140 | + if check(strs[i], strs[j]): |
| 141 | + p[find(i)] = find(j) |
| 142 | + |
| 143 | + return sum(i == find(i) for i in range(n)) |
61 | 144 | ```
|
62 | 145 |
|
63 | 146 | ### **Java**
|
64 | 147 |
|
65 | 148 | <!-- 这里可写当前语言的特殊实现逻辑 -->
|
66 | 149 |
|
67 | 150 | ```java
|
| 151 | +class Solution { |
| 152 | + private int[] p; |
| 153 | + |
| 154 | + public int numSimilarGroups(String[] strs) { |
| 155 | + int n = strs.length; |
| 156 | + p = new int[n]; |
| 157 | + for (int i = 0; i < n; ++i) { |
| 158 | + p[i] = i; |
| 159 | + } |
| 160 | + for (int i = 0; i < n; ++i) { |
| 161 | + for (int j = i + 1; j < n; ++j) { |
| 162 | + if (check(strs[i], strs[j])) { |
| 163 | + p[find(i)] = find(j); |
| 164 | + } |
| 165 | + } |
| 166 | + } |
| 167 | + int res = 0; |
| 168 | + for (int i = 0; i < n; ++i) { |
| 169 | + if (i == find(i)) { |
| 170 | + ++res; |
| 171 | + } |
| 172 | + } |
| 173 | + return res; |
| 174 | + } |
| 175 | + |
| 176 | + private boolean check(String a, String b) { |
| 177 | + int cnt = 0; |
| 178 | + int n = a.length(); |
| 179 | + for (int i = 0; i < n; ++i) { |
| 180 | + if (a.charAt(i) != b.charAt(i)) { |
| 181 | + ++cnt; |
| 182 | + } |
| 183 | + } |
| 184 | + return cnt <= 2; |
| 185 | + } |
| 186 | + |
| 187 | + private int find(int x) { |
| 188 | + if (p[x] != x) { |
| 189 | + p[x] = find(p[x]); |
| 190 | + } |
| 191 | + return p[x]; |
| 192 | + } |
| 193 | +} |
| 194 | +``` |
| 195 | + |
| 196 | +### **C++** |
| 197 | + |
| 198 | +```cpp |
| 199 | +class Solution { |
| 200 | +public: |
| 201 | + vector<int> p; |
| 202 | + int numSimilarGroups(vector<string>& strs) { |
| 203 | + int n = strs.size(); |
| 204 | + for (int i = 0; i < n; ++i) p.push_back(i); |
| 205 | + for (int i = 0; i < n; ++i) |
| 206 | + { |
| 207 | + for (int j = i + 1; j < n; ++j) |
| 208 | + { |
| 209 | + if (check(strs[i], strs[j])) |
| 210 | + p[find(i)] = find(j); |
| 211 | + } |
| 212 | + } |
| 213 | + int res = 0; |
| 214 | + for (int i = 0; i < n; ++i) |
| 215 | + { |
| 216 | + if (i == find(i)) ++res; |
| 217 | + } |
| 218 | + return res; |
| 219 | + } |
| 220 | + |
| 221 | + bool check(string a, string b) { |
| 222 | + int cnt = 0; |
| 223 | + int n = a.size(); |
| 224 | + for (int i = 0; i < n; ++i) |
| 225 | + if (a[i] != b[i]) ++cnt; |
| 226 | + return cnt <= 2; |
| 227 | + } |
| 228 | + |
| 229 | + int find(int x) { |
| 230 | + if (p[x] != x) p[x] = find(p[x]); |
| 231 | + return p[x]; |
| 232 | + } |
| 233 | +}; |
| 234 | +``` |
68 | 235 |
|
| 236 | +### **Go** |
| 237 | +
|
| 238 | +```go |
| 239 | +var p []int |
| 240 | +
|
| 241 | +func numSimilarGroups(strs []string) int { |
| 242 | + n := len(strs) |
| 243 | + p = make([]int, n) |
| 244 | + for i := 0; i < n; i++ { |
| 245 | + p[i] = i |
| 246 | + } |
| 247 | + for i := 0; i < n; i++ { |
| 248 | + for j := i + 1; j < n; j++ { |
| 249 | + if !check(strs[i], strs[j]) { |
| 250 | + continue |
| 251 | + } |
| 252 | + p[find(i)] = find(j) |
| 253 | + } |
| 254 | + } |
| 255 | + res := 0 |
| 256 | + for i := 0; i < n; i++ { |
| 257 | + if i == find(i) { |
| 258 | + res++ |
| 259 | + } |
| 260 | + } |
| 261 | + return res |
| 262 | +} |
| 263 | +
|
| 264 | +func check(a, b string) bool { |
| 265 | + cnt, n := 0, len(a) |
| 266 | + for i := 0; i < n; i++ { |
| 267 | + if a[i] != b[i] { |
| 268 | + cnt++ |
| 269 | + } |
| 270 | + } |
| 271 | + return cnt <= 2 |
| 272 | +} |
| 273 | +
|
| 274 | +func find(x int) int { |
| 275 | + if p[x] != x { |
| 276 | + p[x] = find(p[x]) |
| 277 | + } |
| 278 | + return p[x] |
| 279 | +} |
69 | 280 | ```
|
70 | 281 |
|
71 | 282 | ### **...**
|
|
0 commit comments