找到最近的点

时间:2014-09-17 03:38:00

标签: java distance

在我的程序中,我试图找到距起始位置(0,0)最近的点,然后再“移动”到下一个点。这些点通过文件读入。我想要接下来的一点是“最接近”的观点。我用毕达哥拉斯定理来找到距离。但是我该怎样做才能“检查”我将要确定我是否已经访问过它。例如,如果该点是0,0,然后它变为1,1,如何检查“告诉”程序0,0不再是一个选项?

public class PointsNStuff {
    public static void main(String [] args) {

        final int P = StdIn.readInt();
        double [] x = new double[P];
        double [] y = new double[P];
        double [] visit= new double[P]; //Set an array that stores points that have been visited already
        double [] math= new double[P]; //Set an array that stores the distance to all the points


        for( int i= 0; i< P; i++){ //Store the values from the text file
            x[i] = StdIn.readDouble();
            y[i] = StdIn.readDouble();
        }

        double lowX = x[0];

        double lowY = y[0];

        double highX = x[0];

        double highY = y[0];

        //Find the lowest X and the lowest Y values:

        for (int i = 0; i < P; i++){
            if (lowX > x[i])
                lowX = x[i];
        }for (int i = 0; i < P; i++){
            if (lowY > y[i])
                lowY = y[i];
        }
        for (int i = 0; i < P; i++){
            if (highX < x[i])
                highX = x[i];
        }
        for (int i = 0; i < P; i++){
            if (highY < y[i])
                highY = y[i];
        }
        System.out.println(lowX + " " + lowY);
        System.out.println(highX + " " + highY);
        System.out.println("");
        System.out.println(P);

        //Determine the closest point
        double xCoord=0.0;
        double yCoord=0.0;
        double dist = -1.0;
        for (int i= 0; i < P; i ++){ //Repeat entire section for all P (number of points)
            for (int j = 0; j < P; j++){ //Find the distance between current point and all other points. Go through all points (do the math).
                xCoord = x[j]; // # x point
                yCoord = y[j]; // # y point
                double save= Math.sqrt( ( (xCoord+x[j]) * (xCoord+x[j]) ) + ( (yCoord + y[j]) * (yCoord + y[j]) ) ); //Pythagorean theorem
                save = math[j]; //store the distance in the array slot
            }
            for (int j = 0; j < P; j++){
                if (dist < math[j]){
                    dist = math[j];

                    //What boolean check can I put here to double check whether I have visited this point already?

                    xCoord = x[j]; // set the two points to what number they should be at.
                    yCoord = y[j];
                }
            }
            System.out.println(xCoord + " " + yCoord);
        }
    }
}

我没有在我命名为“visit”的数组中使用任何点。任何和所有的帮助表示赞赏!谢谢!

2 个答案:

答案 0 :(得分:1)

您拥有的是封装的完美候选者!我首先考虑另一个对象来封装“点”。你一直指的概念:

class Point {
    private final double x;
    private final double y;

    public Point(double x, double y) {
        this.x = x;
        this.y = y;
    }

    public double getX() {
        return x;
    }

    public double getY() {
        return y;
    }
}

一个小警告:这假设您在输入文件中不会有重复的x,y对。如果这样做,您可能需要覆盖hashcode和equals。但如果没有,这应该做到。然后,您可以将这些点放入数据结构(请参阅HashSet),如下所示:

import java.util.Set; import java.util.HashSet;

public class PointsNStuff {

    public static void main(String args[]) {

        Set<Point> pointsVisited = new HashSet<>();

        //when you visit a point, put it in the set like this
        //the numbers are just for example
        Point currentPoint = new Point(10.0, 12.0);
        pointsVisited.add(currentPoint);

        //now in the future you can check if you 'visited' this point
        if(!pointsVisited.contains(currentPoint)) {
            System.out.println("Haven't been to current point yet...");
        }

    }

}

答案 1 :(得分:1)

使用ArrayList存储点

ArrayList<Double> x = new ArrayList<Double>();
ArrayList<Double> y = new ArrayList<Double>();

为arraylist添加点,

for( int i= 0; i< P; i++){ //Store the values from the text file
  x.add(StdIn.readDouble());
  y.add(StdIn.readDouble());
} 

从araylist中选择点,

x.get(i); insted of x[i];
y.get(i); insted of y[i];

并删除已使用的点,

x.remove(new Double(used_x_value));
y.remove(new Double(used_y_value));

请参阅Class ArrayList