- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个三角形/树?任何尺寸M。
在本例中,大小 M 为 3:
1
2 3
4 5 6
我的目标是输出所有组合,就像从上到下遍历一样。结果将是{124}{125}{135}{136}
如何将 for 循环与递归结合起来以简化它
private ArrayList<int[]> listOfCombinations = new ArrayList<int[]>();
public void callSequence(int[] combo, int size, int n) {
for (int i = 0; i < 4 && size >= 3; i++) {
// System.out.println("combinations array :" + combo[0] + combo[1] + combo[2]);
listOfCombinations.add(combo);
listOfCombinations.get(i)[0] = 1;
System.out.print(listOfCombinations.get(i)[0]);
}
System.out.println();
for (int i=0; i < 2; i++) {
listOfCombinations.add(combo);
listOfCombinations.get(i)[1] = 2;
System.out.print(listOfCombinations.get(i)[1]);
}
for (int i=2; i < 4; i++) {
listOfCombinations.add(combo);
listOfCombinations.get(i)[1] = 3;
System.out.print(listOfCombinations.get(i)[1]);
}
System.out.println();
for (int i=4; i<=5; i++) {
listOfCombinations.get(i)[2] = i;
System.out.print(listOfCombinations.get(i)[2]);
}
for (int i=5; i<=6; i++) {
listOfCombinations.get(i)[2] = i;
System.out.print(listOfCombinations.get(i)[2]);
}
当我调用这个函数时,它会打印
1 1 1 1
2 2 3 3
4 5 5 6
所以数组是{1,2,4}{1,2,5}{1,3,5}{1,3,6},这是正确的输出,但这是一个不好的方法。我正在尝试考虑如何用递归来做到这一点,这样我就可以简化它。
最佳答案
假设您的数据将如下所示:
RowNum: Position:
0 1
1 2 3
2 4 5 6
然后你可以利用这样一个事实:左Position等于它上面的Position加上RowNum,右Position等于它上面的Position加上RowNum加1。所以,你可以构建一个递归算法像这样使用这个事实:
public static void main(String[] args) {
int maxRows = 3;
paths(maxRows, 1, 1, "1");
}
/**
* Recursive top to bottom depth first approach
*
* @param maxRow Total number of rows to travel down.
* @param rowNum The current row an iteration is on.
* @param position The position number above the current iteration.
* @param values The values so far along the path.
*/
public static void paths(int maxRow, int rowNum, int position, String values) {
//You've hit the bottom so print the results
if(rowNum >= maxRow) {
System.out.println(values);
return;
}
int nextRow = rowNum + 1;
//Calculate position for left side branch, append it to values, and start next iteration
int leftPosition = position + rowNum;
String leftValues = values + " " + leftPosition;
paths(maxRow, nextRow, leftPosition, leftValues);
//Calculate position for right side branch, append it to values, and start next iteration
int rightPosition = position + rowNum + 1;
String rightValues = values + " " + rightPosition;
paths(maxRow, nextRow, rightPosition, rightValues);
}
编辑:这是一个将所有内容存储在容器中的版本,并有一个重载版本来简化用户实际需要的参数。
public static void main(String[] args) {
//Initializes the path function
List<List<Integer>> allPaths = paths(4);
System.out.println(allPaths);
}
/**
* Recursively find all paths in a pyramid like node path. Depth first search.
* <pre><code>
* Row Position
* 0 1
* 1 2 3
* 2 4 5 6
* 3 7 8 9 10
* </code></pre>
*
* @param maxDepth Total number of rows to travel down.
* @return Collection of all the paths in their own collections.
*/
public static List<List<Integer>> paths(int maxDepth) {
List<List<Integer>> allPaths = new ArrayList<>();
List<Integer> path = new ArrayList<>();
path.add(1);
paths(maxDepth, 1, 1, path, allPaths);
return allPaths;
}
/**
* Recursively find all paths in a pyramid like node path. Depth first search.
*
* @param maxDepth Total number of rows to travel down.
* @param currentDepth The current depth an iteration is on.
* @param topPosition The position number above the current iteration.
* @param currentPath The values so far along the path.
* @param allPaths Container for all the paths when it reaches the end.
*/
private static void paths(int maxDepth, int currentDepth, int topPosition, List<Integer> currentPath, List<List<Integer>> allPaths) {
//You've hit the bottom so print the results
if(currentDepth >= maxDepth) {
allPaths.add(currentPath);
return;
}
int nextDepth = currentDepth + 1;
//Calculate position for left side branch, append it to values, and start it's branching iterations
int leftPosition = topPosition + currentDepth;
List<Integer> leftArray = new ArrayList<>(currentPath);
leftArray.add(leftPosition);
paths(maxDepth, nextDepth, leftPosition, leftArray, allPaths);
//Calculate position for right side branch, append it to values, and start it's branching iterations
int rightPosition = topPosition + currentDepth + 1;
List<Integer> rightArray = new ArrayList<>(currentPath);
rightArray.add(rightPosition);
paths(maxDepth, nextDepth, rightPosition, rightArray, allPaths);
}
关于java - 如何使用递归来简化重复的代码?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56763149/
hello1 hello2 hello3 hello4 hello5 hello6
有没有更简短的写法: (apply f (cons a (cons b (cons c d)))) ? 谢谢! (我正在编写一些调用其他函数的辅助函数,这种“模式”似乎经常出现
.NET团队北京时间2024年5月22日已正式发布.NET Aspire ,在博客文章里做了详细的介绍:.NET Aspire 正式发布:简化 .NET 云原生开发 - .NET 博客 (micros
在this dbfiddle demo我有一个 DELETE FROM...WHERE 最后像这样: ...... DELETE FROM data_table WHERE
我有几个 if 语句,如下面的一个。我假设这是一种非常糟糕/长期的编码方式,但不确定我应该做些什么不同的事情。有人有什么建议吗? 谢谢 For a = 1 To Leagues If a =
有什么类似的战术simpl为 Program Fixpoint ? 特别是,如何证明以下无关紧要的陈述? Program Fixpoint bla (n:nat) {measure n} := mat
我使用此代码来跟踪表单上是否有任何更改: $(document).on('input', '.track', function() { var form = $(this); }); 由于这不
我有以下函数,我想用 for 循环来简化它,但不知道该怎么做。任何帮助都感激不尽。基本上,如果字段值为 0 或 null,则我的总值(字段)应为 0,否则,如果字段值从 1 到 1000,则总值变为
我正在尝试对时间字符串执行非常简单的解析 data Time = Time Int Int Int String -- example input: 07:00:00AM timeParser ::
为了使我的代码更具可读性和更简单,我对这段代码绞尽脑汁: var refresh = setInterval(datumTijd, 1000); function datumTijd() { do
这个问题已经有答案了: Check if a variable is in an ad-hoc list of values (8 个回答) 已关闭 9 年前。 只是一个基本的if声明,试图使其更简单
我有一个这样的 if 语句 int val = 1; if (val == 0 || val == 1 || val == 2 || ...); 有没有更简单的方法?例如: int val = 1;
我有一个程序,其中有一些 if 语句,与我将要向您展示的程序类似。我想知道你们是否可以帮助我以任何方式简化这个方程。我之所以问这个问题,是因为在我的 Notepad++ 中,它持续了 443 列,如果
是否可以简化这个 if 语句? 如果是,答案是什么? if (type) { if(NdotL >= 0.0) { color
我有一个包含亚马逊大河的 shapefile。仅 shapefile 就有 37.9 MB,连同属性表高达 42.1 MB。我正在生成所有巴西亚马逊的 PNG 图像,每个 1260x940 像素,sh
System.out.printf("%7s", "a"); System.out.printf("%7s", "b"); System.out.printf("%7s", "c"); S
假设我们有客户端-服务器应用程序,由一个 makefile 编译。服务器使用 libtask 为并行客户端提供服务。客户端使用 ncurses 来处理某些图形。目录树如下所示: ./ --bin/ -
我在 Mono 密码转换的重新实现中找到了这段代码。 我没有修改或简化任何东西 - 这就是它的实际运行方式(有评论如//Dispose unmanaged objects,但实际上什么也没做)。 现在
我需要一些帮助来简化这个包含数百行的庞大代码,但我真的不知道该怎么做。代码看起来真的很乱,我需要的是返回具有预定义文本颜色的模型。有什么简单的方法吗? 我必须多解释一点:- 有一个包含许多型号的手机列
这里有一些代码可以正常工作,但我认为可以简化/缩短。它基本上是点击一个列表项,获取它的 ID,然后根据 ID 显示/隐藏/删除元素。 关于如何使用函数或循环来简化它的建议? $("#btn_remov
我是一名优秀的程序员,十分优秀!