一 . 集合(NSSet) 和数组(NSArray)区别
集合和数组都是存储不同的对象的地址,但数组是有序的集合,NSSet是无序的集合. 集合是一种哈希表,运用散列算法,查找集合中的元素比数组的速度更快,但没有顺序
NSSet * set = [[NSSet alloc] initWithObjects:@"1",@"2",@"3",@"4", nil];
// 返回集合中对象的个数
[set count];
BOOL Y = [set containsObject:@"1"];
if(Y) {
NSLog(@"包含对象1");
}else {
NSLog(@"不包含对象1");
}
NSSet * set2 = [[NSSet alloc] initWithObjects:@"1",@"2",@"3",@"4", nil];
//判断两个集合是否相等
BOOL ret = [set isEqualToSet:set2];
// 判断子集
BOOL R = [set isSubsetofSet:set2];
//集合也可以用枚举器来遍历
NSEnumerator * enumerator = [set objectEnumerator];
NSString *str;
while (str = [enumerator nextObject]) {
NSLog(@"%@",str);
}
通过数组来初始化集合(数组转换为集合)
NSArray * array = [[NSArray alloc] initWithObjects:@"one",@"two",@"three",@"four", nil];
NSSet * set = [[NSSet alloc] initWithArray:array];
集合转为数组
NSArray *A = [set allObjects];
二. 可变集合(NSMutableSet)
NSMutableSet *S = [NSMUtableSet alloc]init];
[S addObject:@"1"];
[S addObject:@"2"];
[S addObject:@"3"];
// 删除元素
[S removeObject:@"1"];
[S removeAllObjects];
//将set2中的元素添加到set中来,如果有重复,只保留一个
NSSet * set2 = [[NSSet alloc] initWithObjects:@"two",@"three",@"four", nil];
[set unionSet:set2];
//删除set中与set2相同的元素
[set minusSet:set2];
指数集合(索引集合)NSIndexSet
//指数集合(索引集合)NSIndexSet
NSIndexSet * indexSet = [[NSIndexSet alloc] initWithIndexesInRange:NSMakeRange(1, 3)]; //集合中的数字是123
//根据集合提取数组中指定位置的元素
NSArray * array = [[NSArray alloc] initWithObjects:@"one",@"two",@"three",@"four", nil];
NSArray * newArray = [array objectsAtIndexes:indexSet]; //返回@"two",@"three",@"four"
NSMutableIndexSet *indexSet = [[NSMutableIndexSet alloc] init];
[indexSet addIndex:0]
[indexSet addIndex:3];
[indexSet addIndex:5];
//通过集合获取数组中指定的元素
NSArray *array = [[NSArray alloc] initWithObjects:@"one",@"two",@"three",@"four",@"five",@"six", nil];
NSArray *newArray = [array objectsAtIndexes:indexSet]; //返回@"one",@"four",@"six"