English 中文(简体)
所有的X射线镜从Each Point到 Java的其他每一个点[封闭]
原标题:All pairs of X,Y coordinates from Each Point to Every other Point with Java [closed]
  • 时间:2011-05-01 15:25:13
  •  标签:
  • java

Greetings,

我正试图从每一点到下文所述其他每一点,找到 Java的所有X、Y轴心。 我正在视窗上使用Eclipse。 非常赞赏对这一问题的帮助。

三个例子:(1.0、2.0)(2.0、2.0)(3.0、4.0)

所有奶制品从每一方到每一方:

Output:

(1.0 ,2.0) (2.0, 2.0)
(1.0, 2.0) (3.0, 4.0)

(2.0, 2.0) (1.0, 2.0)
(2.0, 2.0) (3.0, 4.0)

(3.0, 4.0) (1.0, 2.0)
(3.0, 4.0) (2.0, 2.0)

Thanks,
Paul

最佳回答

只好两次列入清单,但排除了相同的情况:

List<Point> points = new ArrayList<Point>();
points.add(new Point(1, 2));
points.add(new Point(2, 2));
points.add(new Point(3, 4));
printCombinations(points);

public static void printCombinations(List<Point> points) {
    for (int i = 0; i < points.size(); i++) {
        for (int j = 0; j < points.size(); j++) {
            if (i != j)
                System.out.println(points.get(i) + ":" + points.get(j));
        }
    }
}
问题回答

短 h:穿过所有点,穿透所有以下各点,在其他地方添加奶粉。





相关问题
Spring Properties File

Hi have this j2ee web application developed using spring framework. I have a problem with rendering mnessages in nihongo characters from the properties file. I tried converting the file to ascii using ...

Logging a global ID in multiple components

I have a system which contains multiple applications connected together using JMS and Spring Integration. Messages get sent along a chain of applications. [App A] -> [App B] -> [App C] We set a ...

Java Library Size

If I m given two Java Libraries in Jar format, 1 having no bells and whistles, and the other having lots of them that will mostly go unused.... my question is: How will the larger, mostly unused ...

How to get the Array Class for a given Class in Java?

I have a Class variable that holds a certain type and I need to get a variable that holds the corresponding array class. The best I could come up with is this: Class arrayOfFooClass = java.lang....

SQLite , Derby vs file system

I m working on a Java desktop application that reads and writes from/to different files. I think a better solution would be to replace the file system by a SQLite database. How hard is it to migrate ...

热门标签