我有一个NSArray
字符串对象中的名称,如下所示:@[@"john", @"smith", @"alex",
@"louis"]
,我还有另一个包含很多名称的数组。如何检查第一个数组中的所有对象是否都在第二个数组中?
问问题
4966 次
9 回答
21
NSSet
具有您正在寻找的功能。
如果我们暂时忽略性能问题,那么以下代码段将在一行代码中完成您需要的操作:
BOOL isSubset = [[NSSet setWithArray: array1] isSubsetOfSet: [NSSet setWithArray: mainArray]];
于 2013-03-07T11:05:02.370 回答
3
使用此代码..
NSArray *temp1 = [NSArray arrayWithObjects:@"john",@"smith",@"alex",@"loui,@"Jac", nil];
NSArray *temp2 = [NSArray arrayWithObjects:@"john",@"smith",@"alex",@"loui,@"Rob", nil];
NSMutableSet *telephoneSet = [[NSMutableSet alloc] initWithArray:temp1] ;
NSMutableSet *telephoneSet2 = [[NSMutableSet alloc] initWithArray:temp2];
[telephoneSet intersectSet:telephoneSet2];
NSArray *outPut = [telephoneSet allObjects];
NSLog(@"%@",outPut);
输出数组包含:
"john","smith","alex","loui
根据您的要求。
于 2013-03-07T11:26:13.290 回答
0
int num_of_matches = 0;
for(NSString *name in mainArray)
{
if(array1 containsObject:name){
num_of_matches++;
}
}
if(num_of_matches == [array1 count]{
// All objects present
}else {
// Matched number is equal of number_of_matches
}
于 2013-03-07T11:04:10.290 回答
0
如果您只需要检查 array1 中的所有对象是否都在 mainArray 中,您应该只使用NSSet
例如
BOOL isSubset = [[NSSet setWithArray:array1] isSubsetOfSet:[NSSet setWithArray:mainArray]]
如果你需要检查 mainArray 中有哪些对象,你应该看看NSMutableSet
NSMutableSet *array1Set = [NSMutableSet setWithArray:array1];
[array1Set intersectSet:[NSSet setWithArray:mainArray]];
//Now array1Set contains only objects which are present in mainArray too
于 2013-03-07T11:04:22.097 回答
0
使用 NSArray filteredArrayUsingPredicate: 方法。在两个数组中找出相似类型的对象真的很快
NSPredicate *intersectPredicate = [NSPredicate predicateWithFormat:@"SELF IN %@", otherArray];
NSArray *intersectArray = [firstArray filteredArrayUsingPredicate:intersectPredicate];
从上面的代码相交数组为您提供了其他数组中的相同对象。
于 2013-03-07T11:06:51.427 回答
0
试试这个方法;
NSArray *mainArray=@[@"A",@"B",@"C",@"D"];
NSArray *myArray=@[@"C",@"x"];
BOOL result=YES;
for(id object in myArray){
if (![mainArray containsObject:object]) {
result=NO;
break;
}
}
NSLog(@"%d",result); //1 means contains, 0 means not contains
于 2013-03-07T11:07:13.043 回答
0
您可以使用 的概念[NSArray containsObject:]
,您的对象将来自您的 array1 就像您说 "john","smith","alex","loui"
于 2013-03-07T11:03:14.813 回答
0
运行一个循环并用于isEqualToStiring
验证 mainArray 中是否存在 array1 对象。
于 2013-03-07T11:00:53.397 回答
-1
NSArray *array1 = [NSArray arrayWithObjects:@"a", @"u", @"b", @"v", @"c", @"f", nil];
NSMutableArray *mainArray = [NSMutableArray arrayWithObjects:@"a", @"u", @"I", @"G", @"O", @"W",@"Z",@"C",@"T", nil];
int j=0;
for(int i=0; i < mainArray.count; i++)
{
if (j < array1.count)
{
for( j=0; j <= i; j++)
{
if([[mainArray objectAtIndex:i] isEqualToString:[array1 objectAtIndex:j]] )
{
NSLog(@"%@",[mainArray objectAtIndex:i]);
}
}
}
}
于 2013-03-07T11:08:00.227 回答