Python中的pair數據結構指的是鍵值對(key-value pair),通常使用字典(dict)來表示。字典是一種無序的數據類型,不支持集合運算。如果需要對pair數據結構進行集合運算,可以將字典的鍵或值轉換為集合,然后進行操作。例如:
pair1 = {'a': 1, 'b': 2}
pair2 = {'b': 2, 'c': 3}
keys1 = set(pair1.keys())
keys2 = set(pair2.keys())
intersection = keys1.intersection(keys2) # 交集
union = keys1.union(keys2) # 并集
difference = keys1.difference(keys2) # 差集
print(intersection)
print(union)
print(difference)