7

我有两个NSArray对象,我想对它们进行相同的排序。一个包含NSString对象,另一个包含自定义Attribute对象。这是我的“关键” NSArray 的样子:

// The master order
NSArray *stringOrder = [NSArray arrayWithObjects:@"12", @"10", @"2", nil];

带有自定义对象的 NSArray:

// The array of custom Attribute objects that I want sorted by the stringOrder array
NSMutableArray *items = [[NSMutableArray alloc] init];
Attribute *attribute = nil;

attribute = [[Attribute alloc] init];
attribute.assetID = @"10";
[items addObject:attribute];

attribute = [[Attribute alloc] init];
attribute.assetID = @"12";
[items addObject:attribute];

attribute = [[Attribute alloc] init];
attribute.assetID = @"2";
[items addObject:attribute];

所以,我想做的是使用数组来确定自定义对象数组stringOrder的排序。items我怎样才能做到这一点?

4

5 回答 5

14

因此,我直接比较 stringOrder 中 obj1.assetID 的索引和 stringOrder 中 obj2.assetID 的索引(使用 @() 的 Objective-C 文字来转换 NSString => NSNumber)

[items sortUsingComparator:^NSComparisonResult(Attribute *obj1, Attribute *obj2) {
    return [@([stringOrder indexOfObject:obj1.assetID]) compare:@([stringOrder indexOfObject:obj2.assetID])]
}];

或者没有 ObjC 文字:

[items sortUsingComparator:^NSComparisonResult(Attribute *obj1, Attribute *obj2) {
    return [[NSNumber numberWithInt:[stringOrder indexOfObject:obj1.assetID]] compare:[NSNumber numberWithInt:[stringOrder indexOfObject:obj2.assetID]]]
}];
于 2012-11-20T16:56:32.787 回答
6

虽然 cwehrungs 的回答可以完成工作,但在相对较小的阵列上性能并不是很好。

这是另一种执行相同类型排序的方法,该方法更快一些(尽管仍远非完美):

NSMutableArray *sorted = [NSMutableArray array];

// pre-populate with objects
for (int i = 0; i < stringOrder.count; i++)
{
    [sorted addObject:[NSNull null]];
}
// place the items at the correct position
for (Attribute *a in items)
{
    NSUInteger idx = [stringOrder indexOfObject:a.assetID];
    if (idx != NSNotFound)
    {
        [sorted setObject:a atIndexedSubscript:idx];
    }
}
// finally remove all the unecesarry placeholders if one array was smaller
[sorted removeObject:[NSNull null]];

比较

以下是在 iPhone 5 上运行这两种方法的结果:

排序使用比较器:

100  - 0.012 s
1000 - 1.116 s
2000 - 4.405 s
3000 - 9.028 s

预填充数组

100 -  0.003 s
1000 - 0.236 s
2000 - 0.917 s
3000 - 2.063 s
于 2014-10-31T16:26:40.237 回答
2

您可以采取几种方法。

您可以将 Attribute 对象存储在 NSDictionary 中,键是您的 stringOrder 数组中的字符串。然后,您可以获得一个排序的键数组,并使用它来填充您用来显示它们的任何视图:

NSArray* sortedKeys = [dict keysSortedByValueUsingComparator:^(id obj1, id obj2) {
    return [obj1 compareTo:obj2];
}

另一个是您将排序顺序设置为 Attribute 对象的内在属性,因此可以直接对 Attributes 数组进行排序。如果排序顺序实际上是 Attributes 对象的内在属性,我只会建议采用这种方法。如果不是,而您这样做,您最终会将演示信息存储在不属于它的位置。

这是一个例子:

NSArray* sortedAttrs = [attributes sortedArrayUsingComparator:^(id obj1, id obj2) {
    // Perform comparison of Attribute's, ahem, attributes
}
于 2012-11-20T09:09:45.937 回答
1

这是我想出的解决方案,效果非常好。有人看到这方面的性能问题吗?

for (Attribute *a in items) {
    int index = [stringOrder indexOfObject:a.assetID];
    a.sortOrder = index;
}

NSSortDescriptor *sortDescriptor = [[NSSortDescriptor alloc] initWithKey:@"sortOrder" ascending:YES];
NSArray *sortDescriptors = [NSArray arrayWithObject:sortDescriptor];
NSArray *sortedArray = [items sortedArrayUsingDescriptors:sortDescriptors];
于 2012-11-20T16:49:39.440 回答
0

并行处理:

结果(四核):

 1. sortme:95    sortby:852345 sorted:95    time:0.052576
 2. sortme:54248 sortby:852345 sorted:54243 time:0.264660





-(NSArray *)sortArray:(NSArray *)sortme sortBy:(NSArray *)sortBy{

CFAbsoluteTime time = CFAbsoluteTimeGetCurrent();

NSSet *sortmeSet = [NSSet setWithArray:sortme];

NSMutableDictionary *sortDictionary = [NSMutableDictionary dictionary];
dispatch_queue_t sortDictionaryThread = dispatch_queue_create("my.sortDictionaryThread", DISPATCH_QUEUE_CONCURRENT);

[sortBy enumerateObjectsWithOptions:NSEnumerationConcurrent usingBlock:^(id  _Nonnull obj, NSUInteger idx, BOOL * _Nonnull stop) {

    if ([sortmeSet containsObject:obj]){
        dispatch_barrier_async(sortDictionaryThread, ^{
            sortDictionary[obj] = @(idx);
        });
    }
}];


__block NSArray *sortedArray = nil;
dispatch_barrier_sync(sortDictionaryThread, ^{
    sortedArray = [sortDictionary keysSortedByValueUsingSelector:@selector(compare:)];
});

NSLog(@"sortme:%li sortby:%li sorted:%li time:%f",sortme.count,sortBy.count,sortedArray.count, CFAbsoluteTimeGetCurrent() - time);

return sortedArray;
}
于 2016-05-05T17:22:45.803 回答