随机打乱数字序列
例如,我需要帮助在 Obj-C 中随机排列数字序列, 1-4,则为 3,1,2,4 或 1,4,3,2。我知道它涉及到这个函数arc4random()
。 有什么建议/提示吗?
I need help in randomly arranging number sequence in Obj-C for example,
1-4, it'll be 3,1,2,4 or 1,4,3,2. I know it involves this function arc4random()
.
Any suggestions/tips?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在这里您可以找到
NSMutableArray
的洗牌类别:洗牌 NSMutableArray 的最佳方法是什么?
Here you can find a Shuffling Category for
NSMutableArray
:What's the Best Way to Shuffle an NSMutableArray?
您可以使用 int iRandomNum = arc4random() % 4 ,并在 for 循环中相应地使用输出
you can use
int iRandomNum = arc4random() % 4
, and use the output accordingly in for loop