У меня есть этот метод в Java, и я хочу вызвать findskyline
из основного. Я хочу дать в качестве параметра одномерный массив, типа Integer. Как я могу это сделать?
public static ArrayList<Point> findSkyline(Building[] buildings)
{
int n = buildings.length;
ArrayList<Point>finalskyline=new ArrayList<Point>();
.....
.....
return finalskyline;
}
public static class Building{
int left, right, height;
public Building(int left, int right, int height) {
this.left = left;
this.right = right;
this.height = height;
}
}
public static class Point{
public int x, y;
public Point(int x, int y){
this.x = x;
this.y = y;
}
}