gpt4 book ai didi

java - 检查矩阵内的总和并递归地将路径保留在第二个数组上

转载 作者:行者123 更新时间:2023-11-30 06:44:10 24 4
gpt4 key购买 nike

这道题是我期末的 Java 测试:

给定一个正数矩阵(未排序)m、一个整数sum 和另一个用0< 填充的矩阵p/ 一切都结束了。递归检查 m 中是否存在一条路径,其总和等于 sum

规则:

您只能在数组中向下、向上、向左或向右移动。

找到路径后,矩阵 p 将在正确的路径上填充 1

只有一条路

方法完成后,p 上的所有其他单元格都应为 0

如果没有通往此总和的路径,您将保留p,因为您得到了他。

示例:

        int[][] p = {{0,0,0,0},
{0,0,0,0},
{0,0,0,0},
{0,0,0,0}};

一开始。

矩阵是:

        int [][] hill = {{3,8,7,1},
{5,15,2,4},
{12,14,-13,22},
{13,16,17,52}};

如果您在 sum = 23 上调用该方法,该方法将返回 true ,并且 p 将为:

        int[][] p = {{1,0,0,0},
{1,1,0,0},
{0,0,0,0},
{0,0,0,0}};

方法必须是递归的

这个问题让测试变得很糟糕......

希望你能弄明白,也许能帮助我理解它!!谢谢

我的进步:

    public static boolean findSum(int[][] mat , int sum , int[][]path){
return findSum(mat,sum,path,0,0);
}

private static boolean findSum(int[][] m, int sum, int[][] p, int i, int j) {
if (i>=m.length || j>= m[i].length) return false;


boolean op1 = finder(m,sum-m[i][j],p,i,j);
boolean op2 = findSum(m,sum,p,i+1,j);
boolean op3 = findSum(m,sum,p,i,j+1);

if (op1) return true;
else if (op2) return true;
return op3;
}

private static boolean finder(int[][] m, int sum,int[][]p , int i, int j) {

if (sum==0) {
p[i][j]=1;
return true;
}
p[i][j]=1;
boolean op1=false,op2=false,op3=false,op4=false;
if (i>0 && p[i-1][j]==0 && sum-m[i][j]>=0) op1 = finder(m, sum - m[i][j], p, i - 1, j);
if (i<m.length-1 && p[i+1][j]==0&& sum-m[i][j]>=0) op2 = finder(m, sum - m[i][j], p, i + 1, j);
if (j>0 && p[i][j-1]==0&& sum-m[i][j]>=0) op3 = finder(m, sum - m[i][j], p, i, j - 1);
if (j<m[i].length-1 && p[i][j+1]==0&& sum-m[i][j]>=0) op4 = finder(m, sum - m[i][j], p, i, j + 1);
else p[i][j]=0;
return op1||op2||op3||op4;

}

最佳答案

我真的很喜欢解决这个问题。我是用 python 完成的,但你可以轻松地将它扩展到 Java。为了您的理解,我已经对代码进行了评论。让我知道您是否有任何未得到或可以改进的地方。

顺便说一句,在您的示例中,一笔金额有多个路径,下面的代码可以找到所有路径。

hill = [[3,8,7,1],[5,15,2,4],[12,14,-13,22],[13,16,17,52]]
p = [ [0 for x in range (4)] for y in range(4)]
num = 23

def checkPath(p, r, c): #Check boundaries
res = []
if r+1<len(p):
res.append(p[r+1][c] == 0)
if r-1>=0:
res.append(p[r-1][c] == 0)
if c+1<len(p[0]):
res.append(p[r][c+1] == 0)
if c-1>=0:
res.append(p[r][c-1] == 0)
return res


def pathF(tot, hill, p, r, c):
p[r][c] = 1 #mark visited
tot = tot + hill[r][c] #update total

if tot == num: #solution found
print("Found", p)
else:
if any (checkPath(p,r,c)):
if r+1<len(p) and p[r+1][c] == 0: #move right checking if it wasnt visited
pathF(tot,hill,p,r+1,c)
if r-1>=0 and p[r-1][c] == 0:
pathF(tot,hill,p,r-1,c)
if c+1<len(p[0]) and p[r][c+1] == 0:
pathF(tot,hill,p,r,c+1)
if c-1>=0 and p[r][c-1] == 0:
pathF(tot,hill,p,r,c-1)
p[r][c]=0 #mark unvisited
tot = tot - hill[r][c] #set total to original


for x in range(len(hill)): #iterate over every starting point possible
for y in range(len(hill[0])):
pathF(0,hill,p,x,y)

这是 num = 23 的输出

Found [[1, 0, 0, 0], [1, 0, 1, 0], [1, 1, 1, 0], [0, 0, 0, 0]]
Found [[1, 0, 0, 0], [1, 1, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0]]
Found [[1, 1, 1, 1], [0, 0, 0, 1], [0, 0, 0, 0], [0, 0, 0, 0]]
Found [[0, 1, 0, 0], [0, 1, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0]]
Found [[0, 1, 1, 1], [0, 0, 1, 1], [0, 1, 1, 0], [0, 0, 0, 0]]
Found [[0, 0, 1, 1], [0, 0, 1, 1], [0, 0, 1, 1], [0, 0, 0, 0]]
Found [[0, 0, 1, 1], [0, 0, 1, 1], [0, 0, 1, 1], [0, 0, 0, 0]]
Found [[0, 0, 1, 1], [0, 0, 1, 1], [0, 0, 1, 1], [0, 0, 0, 0]]
Found [[1, 1, 1, 0], [1, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0]]
Found [[0, 0, 1, 1], [0, 0, 1, 1], [0, 0, 1, 1], [0, 0, 0, 0]]
Found [[0, 0, 0, 1], [0, 1, 1, 1], [0, 1, 1, 0], [0, 0, 0, 0]]
Found [[0, 0, 0, 1], [0, 1, 1, 1], [0, 1, 1, 0], [0, 0, 0, 0]]
Found [[0, 0, 1, 1], [0, 0, 1, 1], [0, 0, 1, 1], [0, 0, 0, 0]]
Found [[0, 0, 1, 1], [0, 0, 1, 0], [1, 1, 1, 0], [0, 0, 0, 0]]
Found [[0, 0, 1, 1], [0, 0, 1, 1], [0, 0, 1, 1], [0, 0, 0, 0]]
Found [[1, 1, 1, 0], [1, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0]]
Found [[0, 0, 0, 0], [1, 1, 1, 0], [0, 1, 1, 0], [0, 0, 0, 0]]
Found [[0, 0, 0, 0], [1, 1, 1, 0], [0, 1, 1, 0], [0, 0, 0, 0]]
Found [[0, 0, 0, 1], [0, 1, 1, 1], [0, 1, 1, 0], [0, 0, 0, 0]]
Found [[0, 1, 0, 0], [0, 1, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0]]
Found [[1, 0, 0, 0], [1, 1, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0]]
Found [[0, 0, 1, 1], [0, 0, 1, 1], [0, 0, 1, 1], [0, 0, 0, 0]]
Found [[0, 0, 0, 0], [1, 1, 1, 0], [0, 1, 1, 0], [0, 0, 0, 0]]
Found [[1, 0, 0, 0], [1, 0, 1, 0], [1, 1, 1, 0], [0, 0, 0, 0]]
Found [[0, 0, 1, 1], [0, 0, 1, 1], [0, 0, 1, 1], [0, 0, 0, 0]]
Found [[0, 0, 1, 1], [0, 0, 1, 1], [0, 0, 1, 1], [0, 0, 0, 0]]
Found [[0, 0, 1, 1], [0, 0, 1, 1], [0, 0, 1, 1], [0, 0, 0, 0]]
Found [[1, 1, 1, 1], [0, 0, 0, 1], [0, 0, 0, 0], [0, 0, 0, 0]]
Found [[0, 0, 0, 0], [0, 0, 1, 1], [0, 1, 1, 0], [0, 1, 0, 0]]
Found [[0, 0, 1, 1], [0, 0, 1, 0], [1, 1, 1, 0], [0, 0, 0, 0]]
Found [[0, 1, 1, 1], [0, 0, 1, 1], [0, 1, 1, 0], [0, 0, 0, 0]]
Found [[0, 0, 0, 0], [1, 1, 1, 0], [0, 1, 1, 0], [0, 0, 0, 0]]
Found [[0, 0, 0, 0], [0, 0, 0, 0], [0, 1, 1, 1], [0, 0, 0, 0]]
Found [[0, 0, 1, 1], [0, 0, 1, 1], [0, 0, 1, 1], [0, 0, 0, 0]]
Found [[0, 0, 1, 1], [0, 0, 1, 1], [0, 0, 1, 1], [0, 0, 0, 0]]
Found [[0, 0, 1, 1], [0, 0, 1, 1], [0, 0, 1, 1], [0, 0, 0, 0]]
Found [[0, 0, 0, 1], [0, 1, 1, 1], [0, 1, 1, 0], [0, 0, 0, 0]]
Found [[0, 0, 1, 1], [0, 0, 1, 1], [0, 0, 1, 1], [0, 0, 0, 0]]
Found [[0, 0, 1, 1], [0, 0, 1, 1], [0, 0, 1, 1], [0, 0, 0, 0]]
Found [[0, 0, 1, 1], [0, 0, 1, 1], [0, 0, 1, 1], [0, 0, 0, 0]]
Found [[0, 0, 0, 0], [0, 0, 0, 0], [0, 1, 1, 1], [0, 0, 0, 0]]
Found [[0, 0, 0, 0], [0, 0, 1, 1], [0, 1, 1, 0], [0, 1, 0, 0]]

关于java - 检查矩阵内的总和并递归地将路径保留在第二个数组上,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51032518/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com