gpt4 book ai didi

ios - iOS 中的 Randperm

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

我知道在 Matlab 中,有一个名为 randperm 的函数,它基本上返回数字的随机排列。

例如,randperm(6) 返回 [3 2 6 4 1 5]。

在iOS中有类似的东西吗?

最佳答案

要这样做:

- (NSArray*) randperm: (int) total
{
NSMutableArray *array = [[NSMutableArray alloc] init];
int counter = 0;
while (counter < total) {
NSNumber *randomInteger = [NSNumber numberWithInt:(arc4random_uniform(total)+1)];
if (![array containsObject:randomInteger]) {
[array addObject:(randomInteger)];
counter++;
}

}
return array;
}

关于ios - iOS 中的 Randperm,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27456592/

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