헷갈릴만한 자료구조 관련 데이터들을 정리하기 위한 모음집,, 1.객체정렬(나와 비교) 객체를 정렬하기 위해서는 해당 클래스를 Comparable 인터페이스를 구현해야한다. 는 해당객체. 그리고 Comparable인터페이스의 compareTo메소드를 override하여 구현하고 사용해야한다. 예) class People implements Comparable { String name; int height; int weight; public People(String name, int height, int weight) { this.name = name; this.height = height; this.weight = weight; } @Override public int compareTo(People peo..