차근차근
자바 리스트 버블정렬 본문
반응형
for(int i=0;i<sample.size()-1;i++){
for(int j=i+1;j<sample.size();j++){
HashMap<String, String> tempMap1 = sampleMap.get(i);
HashMap<String, String> tempMap2 = sampleMap.get(j);
int a = Integer.parseInt(tempMap1.get("st"));
int b = Integer.parseInt(tempMap2.get("st"));
if(a>b){
Collections.swap(sample,i,j);
}
}
}
반응형
'개발' 카테고리의 다른 글
맥 키보드 한/영 단축키 변환 (0) | 2020.08.05 |
---|---|
이클립스 캐멀스트링 플러그인, 낙타표기법 단축키 (0) | 2020.03.08 |
이클립스 git revert 하는법 (0) | 2019.12.11 |
egov 전자정부프레임워크 sample mapper 설정 변경 (0) | 2019.12.11 |
이클립스 git igonre 해제,취소 (0) | 2019.12.11 |
Comments