php中如何写出所有可能的单词?
可能的重复:
生成任意长度的任意字母的所有组合
我正在尝试在 php 中写出 10 个字母(zzzzzzzzzz)的所有可能单词。我怎样才能做到这一点?它看起来像这样: https://i.sstatic.net/xC381.png
我尝试了一些方法,但他们只是随机生成 10 个字母,而不是从 1 个字母开始增加。顺便说一句,执行时间和它的大小不是问题。我只需要算法,如果有人用代码展示它当然会更有帮助..
Possible Duplicate:
Generate all combinations of arbitrary alphabet up to arbitrary length
I'm trying to make write all possible words of 10 letters(zzzzzzzzzz) in php. How can I do that? it will look like that : https://i.sstatic.net/xC381.png
I tried some ways to it but they are only making 10 letters randomly not increasing from 1 letter. By the way execution time and how it's big is not problem. i just need to algorithm for it, if somebody show it with code it'll be more helpful of course..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
用法:
在这里尝试:http://codepad.org/zdTGLtjY(单词最多 3 个字母)
Usage:
Try it here: http://codepad.org/zdTGLtjY (with words up to 3 letters)
版本 1:
正如 Paul 在下面的评论中指出的,这只会发送到
zzzzzzzzyz
。有点慢(如果有人关心)但正确的版本是:Version 1:
as noted by Paul in comments below, this will only go to
zzzzzzzzyz
. A bit slower (if anyone cares) but correct version would be: