List<Integer> arrayList = new ArrayList<>(); //생성
arrayList.add(10); //데이터 추가 (인덱스 순서대로)
arrayList.get(인덱스); //데이터 가져오기
arrayList.size(); // 리스트 크기
arrayList.remove(인덱스); //데이터 제거
Collections.sort(arrayList); //리스트 정렬
List<Integer> linkedList = new LinkedList<>();