1.Comparable class Data implements Comparable{ int time; int layer; public Data(int time, int layer) { this.time = time; this.layer = layer; } @Override public int compareTo(Data o) { if (this.time > o.time) { return 1; } else if (time == o.time) { if (layer 3이 1보다 크므로 1을..