iOS 知识收集

iOS开发关于随机数及数组随机取元素,数组随机排序

2019-03-22  本文已影响0人  爱吃兔兔的胡萝卜吖

iOS开发关于随机数及数组随机取元素,数组随机排序

一、随机数

printf("Random numbers are: %i %i\n",rand(),rand());
srand((unsigned)time(0)); 
srand((unsigned)time(0)); //不加这句每次产生的随机数不变
int i = rand() % 5;
srandom(time(0));
int i = random() % 5;
//1. 随机整数:范围在 [0,100),包括0,不包括100
int x = arc4random() % 100;

//2. 随机整数:范围在 [from,to],包括from,包括to
int x = arc4random() % (to - from + 1) + from;

//3. 抽取方法:随机整数,范围在[from, to]
-(int)getRandomNumber:(int)from to:(int)to
{
  return (int)(from + (arc4random() % (to – from + 1)));
}
int num = arc4random_uniform(100);

二、数组随机取元素

NSArray *array = [[NSArray alloc] initWithObjects:@"A",@"B",@"C",@"D",@"E",nil];
NSMutableArray *randomArray = [[NSMutableArray alloc] init];

while ([randomArray count] < 3) {
     int r = arc4random() % [array count];
     [randomArray addObject:[array objectAtIndex:r]];
}
NSArray *array = [[NSArray alloc] initWithObjects:@"A",@"B",@"C",@"D",@"E",nil];
NSMutableSet *randomSet = [[NSMutableSet alloc] init];

while ([randomSet count] < 3) {
    int r = arc4random() % [array count];
    [randomSet addObject:[array objectAtIndex:r]];
}
    
NSArray *randomArray = [randomSet allObjects];
NSLog(@"%@",randomArray);

三、随机打乱一个数组的顺序,获得一个新的数组


-(NSMutableArray*)getRandomArrFrome:(NSArray*)arr
{
    NSMutableArray *newArr = [NSMutableArray new];
    while (newArr.count != arr.count) {
        //生成随机数
        int x =arc4random() % arr.count;
        id obj = arr[x];
        if (![newArr containsObject:obj]) {
            [newArr addObject:obj];
        }
    }
    return newArr;
}


    NSArray* arr = @[@"1",@"2",@"3"];
    arr = [arr sortedArrayUsingComparator:^NSComparisonResult(NSString *str1, NSString *str2) {
        int seed = arc4random_uniform(2);
        if (seed) {
            return [str1 compare:str2];
        } else {
            return [str2 compare:str1];
        }
    }];

上一篇 下一篇

猜你喜欢

热点阅读