[Java] ArrayList 정렬 / Collections, List, 사용자정의
Collections 로 정렬하기 // list 선언 List intList = Arrays.asList(5,2,5,9,0,5,4,2,1); Collections.sort(intList); // 오름차순 결과 > 0,1,2,2,4,5,5,5,9 Collections.sort(intList, Collections.reverseOrder()); // 내림차순 결과 > 9,5,5,5,4,2,2,1,0 Collecntions.reversOrder() 에 파라미터 값을 넘기면 다양한 옵션으로 정렬할 수 있습니다. List 로 정렬하기 List 정렬은 Java 8 버전이상에서 가능합니다. // List 선언 List list = new ArrayList(Arrays.asList("C", "A", "B", "a"))..