분류 전체보기 (283) 썸네일형 리스트형 네트워크 기초1 - dns dns : domain to ip service 구성 기본 최상위 도메인 ( = TLD ) 서브 도메인 예시 google.com 에서 .com : 기본 최상위 도메인 google : 서브 도메인 컴퓨터 네트워크 기초 ip = 네트워크 장치가 가진 주소, ipv8 :8자리, 16비트 dhcp (= dynamic host configuration protocol ) : ip 자동 할당 url = 도메인 = 문자화된 ip 주소 dns( = domain name service ) = url -> ip 변환 서비스 선택 정렬 비교가 상대적으로 많다 버블 소트보다는 정렬 횟수가 적다 int[] a = {5,1,6,2,4,3}; int size = a.length; int min = 0; int temp = 0; for(int i = 0 ; size > i ;i++){ min=i; for(int j = i+1 ; size > j ; j++){ if(a[min] > a[j]){ min=j; } } temp = a[min]; a[min] = a[i]; a[i] = temp; } 이전 1 ··· 33 34 35 36 다음