gpt4 book ai didi

ios - 如何比较 Objective-c 中的各种 NSArray?

转载 作者:行者123 更新时间:2023-11-29 02:14:17 29 4
gpt4 key购买 nike

我的代码包含四个 NSArray,每个包含两个对象,代表屏幕上任意点的 XY 坐标。两个或多个数组可能包含同一组坐标。我需要找到这四个数组中重复次数最多的坐标。 isEqualTo: 方法在这种情况下有帮助吗?

最佳答案

一种方法是维护一个 NSDictionary,使用数组中的坐标作为键,然后为每个坐标(即键)维护一个计数器,只要您看到相同的坐标就会递增。

这可能看起来像这样:

NSMutableDictionary *coordinateCount = [[NSMutableDictionary alloc] init];
for (int i = 0; i < coordinates.length; i++) { // do this loop for each of your 4 arrays
Coordinate *c = coordinates[i];
if ([coordinateCount containsKey:c]) {
NSInteger count = [coordinateCount[c] integerValue];
count++;
coordinateCount[c] = @(count);
}
else {
coordinateCount[c] = @(1);
}
}

// now you can retrieve the max count value from all collected values

请注意,此代码未经测试,必须根据您的类型和变量名进行调整。

关于ios - 如何比较 Objective-c 中的各种 NSArray?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28936063/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com