美文网首页
iOS 数组集合(交集,并集,差集,子集)

iOS 数组集合(交集,并集,差集,子集)

作者: zxb有缘 | 来源:发表于2021-11-11 09:19 被阅读0次

NSArray *array1 = @[@"11",@"22",@"33"];
NSArray *array2 = @[@"11",@"55",@"66"];
NSMutableSet *set1 = [NSMutableSet setWithArray:array1];
NSMutableSet *set2 = [NSMutableSet setWithArray:array2];

[set1 unionSet:set2]; //取并集后 set1中为11,22,33,55,66
[set1 intersectSet:set2]; //取交集后 set1中为11
[set1 minusSet:set2]; //取差集后 set1中为22,33,55,66

相关文章

网友评论

      本文标题:iOS 数组集合(交集,并集,差集,子集)

      本文链接:https://www.haomeiwen.com/subject/vzuwzltx.html