ArrayList 중복 카운트
출처http://www.cremazer.zz.mu/?p=1020 import java.util.ArrayList;import java.util.Arrays; public class Test { public static void main(String[] args) { /** 원본 데이터 */ int[] data = {10,3,4,50,4,4,1,2,10,10,25,2,10}; /** 원본 데이터 유형 */ ArrayList itemList = new ArrayList(); /** 원본 데이터 유형별 중복개수 */ ArrayList cntList = new ArrayList(); //1. 데이터 유형 및 개수를 설정한다. for(int index = 0 ; index < data.length ; index+..
2017. 1. 13.