如何定位 NSMutableArray 中的最大值和位置

发布于 2024-12-17 15:32:47 字数 433 浏览 3 评论 0原文

我需要在可变数组中搜索最大值并返回其位置和值。我只想遍历数组一次,我不确定这是否可能,

我想要完成的示例可以在

    NSMutableArray *array = [[NSMutableArray alloc] init];
    for (int i = 0; i<20; i++)
        [array addObject:[NSNumber numberWithInteger:(arc4random()%200)]];

    NSObject *max = [array valueForKeyPath:@"@max.self"];

max 对象下面演示,它似乎只包含该值(而不是位置)。这可以通过调试器使用 print-object max 进行演示

有什么建议吗?

I need to search a mutable array for the maximum value and return its position as well as value. I'd only like to iterate through the array once and I'm not sure if that's possible

an example of what I'm trying to accomplish can be demonstrated below

    NSMutableArray *array = [[NSMutableArray alloc] init];
    for (int i = 0; i<20; i++)
        [array addObject:[NSNumber numberWithInteger:(arc4random()%200)]];

    NSObject *max = [array valueForKeyPath:@"@max.self"];

the max object only seems to contain the value (and not the position). this can be demonstrated through the debugger with print-object max

Any advice out there?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

走野 2024-12-24 15:32:48

使用 valueForKeyPath:@"@max.self" 很棒,但前提是您想要最大值。

要在一次迭代中同时了解索引和值,我会使用 enumerateWithBlock:

NSMutableArray *array = [[NSMutableArray alloc] init];
for (int i = 0; i<20; i++)
    [array addObject:[NSNumber numberWithInteger:(arc4random()%200)]];

__block NSUInteger maxIndex;
__block NSNumber* maxValue = [NSNumber numberWithFloat:0];
[array enumerateObjectsUsingBlock:^(id obj, NSUInteger idx, BOOL *stop) {
    NSNumber* newValue = obj;
    if ([newValue isGreaterThan:maxValue]) {
        maxValue = newValue;
        maxIndex = idx;
    }
}];

相当多的代码,但您只在数组中迭代一次。

Using valueForKeyPath:@"@max.self" is great, but only if you want the maximum value.

To know both index and value in one iteration, I'd use enumerateWithBlock:

NSMutableArray *array = [[NSMutableArray alloc] init];
for (int i = 0; i<20; i++)
    [array addObject:[NSNumber numberWithInteger:(arc4random()%200)]];

__block NSUInteger maxIndex;
__block NSNumber* maxValue = [NSNumber numberWithFloat:0];
[array enumerateObjectsUsingBlock:^(id obj, NSUInteger idx, BOOL *stop) {
    NSNumber* newValue = obj;
    if ([newValue isGreaterThan:maxValue]) {
        maxValue = newValue;
        maxIndex = idx;
    }
}];

Quite more code, but you're iterating only once in the array.

各空 2024-12-24 15:32:48

如果您不担心数组中可能存在多个相同的最大值,则可以使用 -indexOfObject: 来获取索引。它将返回数组中第一次出现的对象。

NSUInteger index = [array indexOfObject:max];

If you're not worried about the possibility of there being more than one identical maximum value in the array, you can use -indexOfObject: to get the index. It will return the first occurrence of the object in the array.

NSUInteger index = [array indexOfObject:max];
臻嫒无言 2024-12-24 15:32:48

我希望以下解决方案将帮助您识别数组中的最大值。

int max = [[numberArray valueForKeyPath:@"@max.intValue"] intValue];    
NSLog(@"Highest number: %i",max);

如有任何问题,请告诉我。

I hope, following solution will help you to identify maximum value from array.

int max = [[numberArray valueForKeyPath:@"@max.intValue"] intValue];    
NSLog(@"Highest number: %i",max);

Please let me know if any issue.

自由范儿 2024-12-24 15:32:48

在这里你可以找到处理集合和KVC的正确方法
这是马特的好帖子
http://nshipster.com/kvc-collection-operators/

Here you can find correct way to deal with collections and KVC
Its nice Post by Matt
http://nshipster.com/kvc-collection-operators/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文