生成一个数字的所有可能组合,同时每个数字都有不同的范围
我已经在互联网上搜索了几天,但还没有找到满足我需求的好方法。所以我试着问问。
我正在寻找一种方法来生成数字的所有可能组合,同时每个数字都有不同的范围。
让我举个例子:
我的输入:[1-3],[0-9],[4],[2-3] 其中一些组合将是: 1042 1043 第1142章 第1143章 1242 依此类推...
代码不得将所有组合存储在内存中的某个变量中,因为我将处理程序可以生成的大数字(最多 10 位数字) txt 文件包含所有可能性,然后将它们一一写入,或者只是在控制台中打印它们。
输入数字的长度和每个数字的范围在给出之前是未知的。所以没有硬编码的嵌套循环。它必须是动态的。
我希望我说清楚了
..tnx
i been searching the internet for few days now but haven't found good approach for my needs. so ill try asking.
Im looking for a way to generate all possible combinations of a number while each digit got different range.
let me give you an example:
my input: [1-3],[0-9],[4],[2-3]
few of the combinations will be:
1042
1043
1142
1143
1242
and so on...
the code must not store all of the combinations at some variable in memory, because i'll be working with big numbers (up to 10 digits) the program can make txt file with all the possibilities and write them one by one or just print them in console.
the input number length and the range for each digit is unknown until it been given. so no hard coded nested loops. it must be dynamic.
i hope i was clear..
tnx
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用一种名为回溯的技术。
这是一个 C++ 示例。
这是输出:
You can use a technique called backtracking.
Here's an example in C++.
Here's the output:
尽管这是一个非常古老的问题,但由于它被标记为
C#
但没有 C# 答案,因此这是我的变体。它是非递归的,这有助于提高紧密循环中的性能:Even though this is a very old question, seeing as it's tagged
C#
but has no C# answers, here's my variant. It's non-recursive, which helps with performance in tight loops: