Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
首先,我非常抱歉我没有代码。那只是因为我还没有完全理解这个概念。我希望能够编写一个小的 java 程序,它可以采用任何数字的有序列表,使得列表是 1 到数字。比如说我的数字是 9。我希望这个列表是123456789然后我想创建一个程序来创建这 9 个数字的每一个可能的组合。比如说另一个组合是923456781. 老实说,我不知道如何处理这个问题。
123456789
923456781
我将第一个数字生成为字符串 123456789,然后对其进行置换。
有关排列,请参见https://stackoverflow.com/a/12252782/509840。