如何打乱包含重复项的数组,但重复项不能背靠背
给定一个数组 [1, 2, 2, 3, 4, 4, 5]
,是否可以对数组进行打乱,同时防止重复项彼此相邻?
例如:
[1, 2, 3, 4, 2, 5, 4]
是一个可接受的解决方案。[1, 2, 3, 4, 4, 2, 5]
不是一个可接受的解决方案,因为4
毗邻另一个4
这似乎就像一个简单的问题,但仔细思考后,答案似乎很复杂。非常感谢任何帮助,谢谢!
Given an array [1, 2, 2, 3, 4, 4, 5]
, is it possible to shuffle the array while preventing the duplicates to be next to each other?
For example:
[1, 2, 3, 4, 2, 5, 4]
is an acceptable solution.[1, 2, 3, 4, 4, 2, 5]
is not an acceptable solution since4
is next to another4
This seems like a simple question but after thinking about it, the solution seems complicated. Any help is greatly appreciated, thanks!!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果你不关心算法的执行时间,只需shuffle几次,直到得到你想要的结果
If you don't care about the execution time of the algorithm, just shuffle a few times until you get the result you want