Skip to content

Latest commit

 

History

History
55 lines (30 loc) · 1.05 KB

set.rst

File metadata and controls

55 lines (30 loc) · 1.05 KB

集合(Set)

附录,常用集合运算:

A = {'a', 'b', 'c'}
B = {'a', 'e', 'i', 'o', 'u'}

inter(x, y): 交集,在集合 x 和集合 y 中都存在的元素。
inter(A, B) = {'a'}

union(x, y): 并集,在集合 x 中或集合 y 中的元素,如果一个元素在 x 和 y 中都出现,那只记录一次即可。
union(A,B) = {'a', 'b', 'c', 'e', 'i', 'o', 'u'}

diff(x, y): 差集,在集合 x 中而不在集合 y 中的元素。
diff(A,B) = {'b', 'c'}

card(x): 基数,一个集合中元素的数量。
card(A) = 3

空集: 基数为 0 的集合。