一、集合:集合(NSSet)和數組(NSArray)有類似之處,都是存儲不一樣的對象的地址;不過NSArray是有序的集合,NSSet是無序的集合。
集合是一種哈希表,運用散列算法,查找集合中的元素比數組速度更快,可是它沒有順序。算法
1 NSSet * set = [[NSSet alloc] initWithObjects:@"one",@"two",@"three",@"four", nil]; 2 [set count]; //返回集合中對象的個數
判斷集合中是否擁有某個元素數組
1 //判斷集合中是否擁有@「two」 2 BOOL ret = [set containsObject:@"two"];
判斷兩個集合是否相等spa
1 NSSet * set2 = [[NSSet alloc] initWithObjects:@"one",@"two",@"three",@"four", nil]; 2 //判斷兩個集合是否相等 3 BOOL ret = [set isEqualToSet:set2];
判斷set是不是set2的子集合code
1 NSSet * set2 = [[NSSet alloc] initWithObjects:@"one",@"two",@"three",@"four",@"five", nil]; 2 //判斷set是不是set2的子集合 3 BOOL ret = [set isSubsetOfSet:set2];
集合也能夠用枚舉器來遍歷對象
1 //集合也能夠用枚舉器來遍歷 2 NSEnumerator * enumerator = [set objectEnumerator]; 3 NSString *str; 4 while (str = [enumerator nextObject]) { 5 …… 6 }
經過數組來初始化集合(數組轉換爲集合)blog
1 NSArray * array = [[NSArray alloc] initWithObjects:@"one",@"two",@"three",@"four", nil]; 2 NSSet * set = [[NSSet alloc] initWithArray:array];
集合轉換爲數組索引
1 NSArray * array2 = [set allObjects];
二、可變集合NSMutableSetthree
1 //可變集合NSMutableSet 2 NSMutableSet * set = [[NSMutableSet alloc] init]; 3 [set addObject:@"one"]; 4 [set addObject:@"two"]; 5 [set addObject:@"two"]; //若是添加的元素有重複,實際只保留一個
刪除元素rem
1 //刪除元素 2 [set removeObject:@"two"]; 3 [set removeAllObjects];
將set2中的元素添加到set中來,若是有重複,只保留一個it
1 //將set2中的元素添加到set中來,若是有重複,只保留一個 2 NSSet * set2 = [[NSSet alloc] initWithObjects:@"two",@"three",@"four", nil]; 3 [set unionSet:set2];
刪除set中與set2相同的元素
1 [set minusSet:set2];
三、指數集合(索引集合)NSIndexSet
1 //指數集合(索引集合)NSIndexSet 2 NSIndexSet * indexSet = [[NSIndexSet alloc] initWithIndexesInRange:NSMakeRange(1, 3)]; //集合中的數字是123
根據集合提取數組中指定位置的元素
1 //根據集合提取數組中指定位置的元素 2 NSArray * array = [[NSArray alloc] initWithObjects:@"one",@"two",@"three",@"four", nil]; 3 NSArray * newArray = [array objectsAtIndexes:indexSet]; //返回@"two",@"three",@"four"
四、可變指數集合NSMutableIndexSet
1 NSMutableIndexSet *indexSet = [[NSMutableIndexSet alloc] init]; 2 [indexSet addIndex:0] 3 [indexSet addIndex:3]; 4 [indexSet addIndex:5]; 5 //經過集合獲取數組中指定的元素 6 NSArray *array = [[NSArray alloc] initWithObjects:@"one",@"two",@"three",@"four",@"five",@"six", nil]; 7 NSArray *newArray = [array objectsAtIndexes:indexSet]; //返回@"one",@"four",@"six"
結題!!!