如何枚举所有可能的元素组合
我想枚举元素数组的所有可能组合。例如:我有数组:
$r = ('a1','a2','a3' ...).
我想打印元素数组的所有组合: a1a2、a1a3、a1a2a3 等。 在哪里 a1a2 != a2a1, a1a2a3 != a1a3a2 ...
I want to enumerate all possible combinations of elements array. For example: I have array:
$r = ('a1','a2','a3' ...).
I want to print all combinations of element arrays:
a1a2, a1a3, a1a2a3, etc .
where
a1a2 != a2a1, a1a2a3 != a1a3a2 ...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
事实证明,有一个一个模块:
It turns out that there's a module for that: