简体   繁体   English

如何在Java 2D数组中打印最大值路径?

[英]How to print the maximum valued path in a 2D array in Java?

I guess you all know the "strawberry" problem that some give you in job interviews, where you need to calculate the path between 2 corners of a 2D array that you can only move up or to the right and you have the calculate the maximum valued path. 我猜你们都知道某些人在求职面试中给您的“草莓”问题,您需要计算只能向上或向右移动的二维数组的两个角之间的路径,并且可以计算出最大值路径。 I have a perfectly working code that does it in Recursion, but it's complexity is to high. 我有一个完美的代码可以在递归中完成,但是它的复杂性很高。 i also solved the problem in the "for loop" solution that does it in O(n^2) complexity. 我还以O(n ^ 2)复杂度解决了“ for循环”解决方案中的问题。 but in this solution i just couldn't figure out a way to print the route like i did in the recursion solution. 但是在这种解决方案中,我只是找不到像在递归解决方案中那样打印路线的方法。 This is my code (it is quite long to read here so i guess you should copy,compile and run). 这是我的代码(在这里阅读很长,所以我想您应该复制,编译和运行)。 look at the results of the recursion solution, BTW - The path needs to be from the left bottom corner to the right upper corner I want to print the route the same way in the better solution : 查看递归解决方案的结果,顺便说一句-路径需要从左下角到右上角, 我想在更好的解决方案中以相同的方式打印路线

public class Alg
{
public static void main(String args[])
{
    String[] route = new String[100];                  
    int[][]array = {{4,-2,3,6}
                    ,{9,10,-4,1}
                    ,{-1,2,1,4}
                    ,{0,3,7,-3}};
    String[][] route2 = new String[array.length][array[0].length];                
    int max = recursionAlg(array,array.length-1,0,route);        
    int max2 = loopAlg(array,array.length-1,0,route2);
    System.out.println("The max food in the recursion solution is: "+max);
    System.out.println("and the route is: ");
    printRouteArray(route);
    System.out.println("The max food in the loop solution: "+max2);
    System.out.println("The route is: ");
    //SHOULD PRINT HERE THE ROUTE
}


public static int loopAlg(int [][] arr,int x, int y, String[][] route)
{
    int n=0;
    int[][]count = new int[arr.length][arr[0].length];
    for(int i = x; i>=0 ; i--)
    {
        for(int j = 0; j<arr[0].length; j++)
        {
            if (i==x && j==0) {count[i][j]=arr[i][j];}
            else if (i == x) { count[i][j]=count[i][j-1]+arr[i][j];}
            else if (j == 0) { count[i][j]=count[i+1][j]+arr[i][j]; }
            else{
                if (count[i][j-1]>count[i+1][j]) {count[i][j]=count[i][j-1]+arr[i][j];}
                else { count[i][j]= count[i+1][j]+arr[i][j];}
            }
        }
    }
    return count[0][arr[0].length-1];
}   

public static int recursionAlg(int [][] arr, int x, int y,String[] route)
{
    return recursionAlg(arr,0,x,y,arr[0].length-1,route,0);        
}

public static int recursionAlg(int[][]arr,int count,int x, int y, int max_y, String[] route, int i)
{
    if (x == 0 && y == max_y) {return count;}
    else if (x == 0) {
        route[i]="Right";
        return recursionAlg(arr,count+arr[x][y+1],x,y+1,max_y,route,i+1);
    }
    else if (y==max_y){
        route[i]="Up";
        return recursionAlg(arr,count+arr[x-1][y],x-1,y,max_y,route,i+1);
    }     
    else if (recursionAlg(arr,count+arr[x-1][y],x-1,y,max_y,route,i+1)>recursionAlg(arr,count+arr[x][y+1],x,y+1,max_y,route,i+1))
    {
        route[i]="Up";
        return  recursionAlg(arr,count+arr[x-1][y],x-1,y,max_y,route,i+1);
    }
    else
    {
        route[i]="Right";
        return recursionAlg(arr,count+arr[x][y+1],x,y+1,max_y,route,i+1);
    }
}

public static void printRouteArray(String[] arr)
{
    int i=0;
    while (i<arr.length && (arr[i]=="Up" || arr[i]=="Right"))
    {
        System.out.print(arr[i]+"-->");
        i++;
    }
    System.out.println("End");
}    
}

Hope you can help, thanks! 希望能对您有所帮助,谢谢!

You need another 2-dimensional array inside loopAlg that memorizes which step to take to come to this next entry for every entry in your initial 2-dim array. 您需要在loopAlg中使用另一个二维数组,该数组会记住初始2维数组中每个条目的下一步。 See the following code and https://ideone.com/kM8BAZ for a demo: 请参阅以下代码和https://ideone.com/kM8BAZ进行演示:

public static void main(String args[])
{
    String[] route = new String[100];                  
    int[][]array = {{4,-2,3,6}
                    ,{9,10,-4,1}
                    ,{-1,2,1,4}
                    ,{0,3,7,-3}};
    String[] route2 = new String[100];                
    int max = recursionAlg(array,array.length-1,0,route);        
    int max2 = loopAlg(array,array.length-1,0,route2);
    System.out.println("The max food in the recursion solution is: "+max);
    System.out.println("and the route is: ");
    printRouteArray(route);
    System.out.println("The max food in the loop solution: "+max2);
    System.out.println("The route is: ");
    printRouteArray(route2);
}

public enum Dirs {START, FROM_LEFT, FROM_DOWN};

public static int loopAlg(int [][] arr,int x, int y, String[] route)
{

    int n=0;
    int[][]count = new int[arr.length][arr[0].length];
    Dirs[][] directions = new Dirs[arr.length][arr[0].length];
    List<String> path = new ArrayList<String>();

    for(int i = x; i>=0 ; i--)
    {
        for(int j = 0; j<arr[0].length; j++)
        {
            if (i==x && j==0) {count[i][j]=arr[i][j]; directions[i][j] = Dirs.START;}
            else if (i == x) { count[i][j]=count[i][j-1]+arr[i][j]; directions[i][j] = Dirs.FROM_LEFT;}
            else if (j == 0) { count[i][j]=count[i+1][j]+arr[i][j]; directions[i][j] = Dirs.FROM_DOWN;}
            else{
                if (count[i][j-1]>count[i+1][j]) {count[i][j]=count[i][j-1]+arr[i][j];directions[i][j] = Dirs.FROM_LEFT;}
                else { count[i][j]= count[i+1][j]+arr[i][j];directions[i][j] = Dirs.FROM_DOWN;}
            }
        }
    }
    int i=0, j=arr[0].length-1;
    while(directions[i][j]!= Dirs.START) {
        if(directions[i][j] == Dirs.FROM_LEFT) {
            path.add("Right");
            j--;
        }
        else {
            path.add("Up");
            i++;
        }
    }
    Collections.reverse(path);
    i=0;
    for(String part:path) {
        route[i] = part;
        i++;
    }

    return count[0][arr[0].length-1];
}   

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM