首页 > 其他 > 详细

OC实现将N个数随机排列

时间:2014-05-17 21:25:24      阅读:382      评论:0      收藏:0      [点我收藏+]
bubuko.com,布布扣
 1 + (NSMutableArray *)randArray : (NSMutableArray *)arrayM
 2 {
 3 
 4     NSMutableArray *resultM = [[NSMutableArray alloc] initWithCapacity:arrayM.count];
 5     NSInteger count = arrayM.count;
 6     for (NSInteger i = 0; i < count; i ++)
 7     {
 8         NSInteger index = arc4random_uniform((unsigned int)arrayM.count);
 9         [resultM addObject:[arrayM objectAtIndex:index]];
10         [arrayM removeObjectAtIndex:index];
11         
12     }
13     return resultM;
14 }
bubuko.com,布布扣

 

OC实现将N个数随机排列,布布扣,bubuko.com

OC实现将N个数随机排列

原文:http://www.cnblogs.com/dashunzi/p/3732872.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!