728x90
반응형
728x90
반응형

 

위경도 기준 가까운 장소, 거리, 위치 정렬하기

 

1. SQL 쿼리

  • 지구의 반지름 6371km
  • ASIN(1) * 2 = PI(3.14)

 

SELECT 장소명
     , 6371 * ACOS(
        COS ( (ASIN(1) * 2) / 180 * 내위치 위도 35.xxx)
      * COS ( (ASIN(1) * 2) / 180 * 정렬하고자 하는 테이블의 등록된 위치의 위도 35.xxx)
      + SIN ( (ASIN(1) * 2) / 180 * 내위치 위도 35.xxx)
      * SIN ( (ASIN(1) * 2) / 180 * 정렬하고자 하는 테이블의 등록된 위치의 위도 35.xxx)
      * COS (((ASIN(1) * 2) / 180 * 내위치 경도 127.xxx) - ((ASIN(1) * 2) / 180 * 정렬하고자 하는 테이블의 등록된 위치의 경도 127.xxx))
      ) AS DISTANCE
   FROM 테이블명
 ORDER BY DISTANCE;

 

 

2. RADIANS 함수 사용 쿼리

  • RADIANS 함수 생성
  • 빗변의 길이가 1인 직각삼각형은 cos(세타) == sin(90-세타)
  • 2파이r은 원의 둘레의 공식에서 빗변의길이 == 2세타
  • 위도,경도로 가까운거리 = 원의둘레의 중 일부의길이
  • 세타*6371이 두개의 위도,경도가 주어졌을때 서로간의 길이 
  •  ACOS로 세타의값을 상수로 변경

 

CREATE OR REPLACE FUNCTION RADIANS(nDegrees IN NUMBER) RETURN NUMBER DETERMINISTIC IS

BEGIN
-- radians = degrees / (180 / pi)
-- RETURN nDegrees / (180 / ACOS(-1)); -- but 180/pi is a constant, so...
RETURN nDegrees / 57.29577951308232087679815481410517033235;
END RADIANS;

출처 : https://shiningknowledge.tistory.com/135

 

SELECT 장소명
 , 6371 * ACOS(
   COS(RADIANS(내위치 위도 35.xxx))
 * COS(RADIANS(정렬하고자 하는 테이블의 등록된 위치의 위도 35.xxx))
 + SIN(RADIANS(내위치 위도 35.xxx))
 * SIN(RADIANS(정렬하고자 하는 테이블의 등록된 위치의 위도 35.xxx))
 * COS(RADIANS(내위치 경도 127.xxx)-RADIANS(정렬하고자 하는 테이블의 등록된 위치의 경도 127.xxx))
 )
 FROM 테이블명
 ORDER BY DISTANCE;

 

3. ST_Distance

  • 두 개의 위경도 사이의 최소거리
  • 점과 점사이 거리
  • 반환 타입은 미터
  • ST_DistanceSphere(
      ST_GeomFromText('POINT(129.014525 35.13542)', 4326)
    , ST_GeomFromText('POINT(129.014525 36.24553)', 4326)
  • EPSG:4326, EPSG:3857 등 많이 사용하는 좌표체계, 생략가능

 

SELECT 장소명
  , ST_Distance(
    ST_GEOMFROMTEXT('POINT(' || 정렬하고자 하는 테이블의 등록된 위치의 경도 127.xxx || ' ' || 정렬하고자 하는 테이블의 등록된 위치의 위도 35.xxx || ')')
  , ST_GEOMFROMTEXT('POINT([내위치 경도 127.xxx] [내위치 위도 35.xxx])') 
  ) AS DISTANCE
  FROM 테이블명
  ORDER BY DISTANCE;

 

 

 

 

 

수정이 필요하거나 내용이 추가 될 부분은 댓글을 남겨주시면 반영하겠습니다.

Last modified date : 23.01.02

 

728x90
반응형
728x90
반응형

 

쉘 정렬 알고리즘

쉘 정렬(Selection Sort) 알고리즘은 삽입정렬을 보완 알고리즘입니다.

  • 가장 오래된 정렬 알고리즘의 하나
  • 전체 원소를 일정 간격(Interval)으로 분할
  • 서브 리스트들은 각자 정렬
  • 간격이 1이 될때 까지 진행

 

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
import java.util.Random;
 
public class Shell_Sort {
 
    public static void main(String[] args) {
        
        Random rnd=new Random();
        int size=16;
        int[] arr=new int[size];
        
        System.out.printf("정렬 전 원소 (%d)개: ",size);
        for(int i=0; i<size; i++) {
            arr[i]=rnd.nextInt(99)+1;
            System.out.print(arr[i]+" ");
        }
        System.out.println();
//        int[] arr = { 10, 50, 80, 90, 70 };
 
        shell_Sort(arr);
    }
 
    private static void shell_Sort(int[] arr) {
 
        int arrSize = arr.length;
        int interval = arrSize / 2;
 
        while (interval >= 1) {
            for (int i = 0; i < interval; i++) {
                intervalSort(arr, i, arrSize - 1, interval);
 
            }
            output(arr, interval);
            interval /= 2;
            
        }
    }
 
    private static void intervalSort(int[] arr, int start, int end, int interval) {
 
        for (int i = start + interval; i <= end; i += interval) {
            int item = arr[i];
            int j = 0;
            for (j = i - interval; j >= start && item < arr[j]; j -= interval) {
                // arr[j]의 값이 크니까 삽입
                arr[j + interval] = arr[j];
            }
            //삽입 끝낫으니 기억해둔 값 삽입
            arr[j + interval] = item;
        }
    }
 
    private static void output(int[] arr,int interval) {
        
        for (int i = 0; i < arr.length; i++) {
            System.out.print(arr[i] + " ");
        }
        System.out.println("인터벌 : "+ interval);
    }
}
http://colorscripter.com/info#e" target="_blank" style="color:#4f4f4f; text-decoration:none">Colored by Color Scripter

 

수행 결과 Java Console 창

 

728x90
반응형
728x90
반응형

 

버블 정렬 알고리즘

버블 정렬(Bubble Sort) 알고리즘은 원소가 뒤에서 부터 정렬되는 알고리즘입니다.

  • 인접한 두 원소를 검사하여 정렬하는 알고리즘
  • 간단한 알고리즘
  • 성능 향상 알고리즘으로 준비
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
public class Bubble_Sort {
    public static void main(String[] args) {
        
        int[] arr = { 1050809070 };
        // 배열의 길이 -1
        int size = arr.length -1
        boolean flag;
        
        for (int i = 0; i < size; i++) {
            
            // 교환이 있었는지 체크하는 변수
            flag = false
            
            // 맨 뒤 부터 정렬 되기 때문 i만큼 뺀다
            for (int j = 0; j < size - i; j++) { 
                if (arr[j] > arr[j + 1]) {
                    
                    // 교환이 발생하여 true 로 변경
                    flag = true;
                    int temp = arr[j];
                    arr[j] = arr[j + 1];
                    arr[j + 1= temp;
                }
            }
            
            // 원소 교환이 없으므로 정렬을 더 이상 할 필요 없다.
            if (flag == false) {
                break;
            }
        }
        output(arr);
    }
 
    private static void output(int[] arr) {
        for (int i = 0; i < arr.length; i++) {
            System.out.print(arr[i] + " ");
        }
    }
}
http://colorscripter.com/info#e" target="_blank" style="color:#4f4f4f; text-decoration:none">Colored by Color Scripter
728x90
반응형
728x90
반응형

 

삽입 정렬 알고리즘

삽입 정렬(Insertion Sort) 알고리즘은 자신의 위치를 찾아 삽입함으로써 정렬을 완성하는 알고리즘입니다.

  • Index가 2번째부터 시작합니다.
  • (오름차순) Index의 값보다 크면 한 칸씩 뒤에 저장합니다.
  • 위치를 찾으면 그 위치로 삽입합니다.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
public class Insertion_Sort {
    public static void main(String[] args) {
        
        int[] arr = { 1050809070 };
 
        for (int i = 1; i < arr.length; i++) {
            int temp = arr[i];
            for (int j = i; j > 0; j--) {
                
                if (arr[j - 1> temp) {
                    arr[j] = arr[j - 1];
                    
                    if (j == 1) {
                        arr[j] = temp;
                        break;
                    }
                    
                } else {
                    arr[j] = temp;
                    break;
                }
            }
        }
        output(arr);
    }
 
    private static void output(int[] arr) {
        
        for (int i = 0; i < arr.length; i++) {
            System.out.print(arr[i] + " ");
        }
    }
}
http://colorscripter.com/info#e" target="_blank" style="color:#4f4f4f; text-decoration:none">Colored by Color Scripter
728x90
반응형
728x90
반응형

 

선택 정렬 알고리즘

선택 정렬(Selection Sort) 알고리즘은 원소가 앞에서부터 정렬되는 알고리즘입니다.

  • 원소들 중에서 최솟값을 찾는다.
  • 맨 앞의 값과 최솟값과 교체(Swap) 한다.
  • 마지막으로 교체(Swap)한 다음 위치부터 위와 같이 진행한다.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
public class Selection_Sort {
    public static void main(String[] args) {
        int[] arr = { 1050809070 };
 
        for (int i = 0; i < arr.length - 1; i++) {
            
            int min = i;
 
            for (int j = i + 1; j < arr.length; j++) {
                if (arr[min] > arr[j]) {
                    /*최솟값의 위치를 변경한다*/
                    min = j;
                }
            }
            
            /*맨 앞 부터 최솟값의 원소와 교체한다.*/
            int temp = arr[i];
            arr[i] = arr[min];
            arr[min] = temp;
        }
        output(arr);
    }
 
    private static void output(int[] arr) {
        
        for (int i = 0; i < arr.length; i++) {
            System.out.print(arr[i] + " ");
        }
    }
}
http://colorscripter.com/info#e" target="_blank" style="color:#4f4f4f; text-decoration:none">Colored by Color Scripter
728x90
반응형
728x90
반응형
 

퀵 정렬 알고리즘

퀵 정렬(Quick Sort) 알고리즘은 원소들 중에서 특정한 기준을 피봇(Pivot)라고 부르며

피봇보다 작은 원소는 왼쪽으로 큰 원소는 오른쪽으로 이동한다.

초기 세팅 변수 left = 0 , rigth = 배열 길이-1 , pivot = (left+right)/2 (피봇은 중앙값으로 세팅함)

 

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
public class Quick_Sort {
 
    public static void main(String[] args) {
        
        int[] arr = { 1050809070 };
        
        quick_Sort(arr, 0, arr.length - 1);
        output(arr);
    }
 
    private static void quick_Sort(int[] arr, int start, int end) {
        
        int left = start;
        int right = end;
        /*pivot을 중앙 값으로 셋팅*/
        int pivot = arr[(left + right) / 2];
 
        do {
            while (arr[left] < pivot) {
                left++;
            }
            while (arr[right] > pivot) {
                right--;
            }
 
            if (left <= right) {
                int temp = arr[left];
                arr[left] = arr[right];
                arr[right] = temp;
                left++;
                right--;
            }
 
        } while (left <= right);
 
        if (start < right) {
            quick_Sort(arr, start, right);
 
        }
        if (end > left) {
            quick_Sort(arr, left, end);
        }
    }
 
    private static void output(int[] arr) {
        
        for (int i = 0; i < arr.length; i++) {
            System.out.print(arr[i] + " ");
        }
    }
}
http://colorscripter.com/info#e" target="_blank" style="color:#4f4f4f; text-decoration:none">Colored by Color Scripter

 

퀵 정렬 성능 향상 방법

  • 작은 데이터 구간에는 삽입 정렬을 사용하여 퀵 정렬의 재귀의 깊이를 줄여 스택 사용을 줄여 준다
  • 비 재귀 구현
  • 난수(Random) 분할 > Worst 경우 인 정렬된 배열과 역순 배열일 때 문제를 해결하기 위해 난수로 선택한다
  • 메디안 퀵 정렬(Median of Three QuickSort) - 세 값(처음, 가운데, 끝)의 중윗값을 찾아 Pivot으로 선택한다
728x90
반응형
728x90
반응형

 

합병정렬 알고리즘

합병정렬(Merge Sort) 알고리즘은 원소를 반으로 분할한 후 분할한 원소를 다시 병합하는 정렬 방법입니다.

초기 세팅 변수 left = 0 , rigth = 배열 길이-1 , mid = (left+right)/2

  • 원소를 반으로 계속 나눈다 >>> 배열(리스트)의 길이가 1이 될 때 까지 분할합니다. (mergeSortDevide)
  • 1개씩 분할된 원소들을 정렬하면서 합친다. (Merge)
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
public class Merge_Sort {
 
    public static void main(String[] args) {
        
        int[] arr = { 1080919070 };
        
        /*원소를 반으로 나누는 함수*/
        mergeSortDevide(arr, 0, arr.length - 1);
        
        /*합병 정렬된 배열을 출력하는 함수*/
        output_merge_arr(arr); 
    }
 
    private static void mergeSortDevide(int[] arr, int left, int right) {
        
        /*원소의 수가 2개 이상일경우 실행*/
        if (left < right) { 
            
            /*반으로 나누기 위한 변수*/
            int mid = (left + right) / 2
            
            /*앞(왼쪽)부분 재귀 호출*/
            mergeSortDevide(arr, left, mid); 
        
            /*뒤(오른쪽)부분 재귀 호출*/
            mergeSortDevide(arr, mid + 1, right);
            
            /*원소를 Merge하는 함수*/
            merge(arr, left, mid, right); 
        }
    }
 
    private static void merge(int[] arr, int left, int mid, int right) {
 
        int i = left;
        int j = mid + 1;
        int temp_index = left;
 
        int[] temp = new int[arr.length];
 
        while (i <= mid && j <= right) {
            if (arr[i] < arr[j]) {
                temp[temp_index++= arr[i++];
            } else {
                temp[temp_index++= arr[j++];
            }
        }
        
        /*앞(왼쪽)부분 배열에 원소가 남아있는 경우*/
        while (i <= mid) { 
            temp[temp_index++= arr[i++];
        }
        
        /*뒤(오른쪽)부분 배열에 원소가 남아있는 경우*/
        while (j <= right) {
            temp[temp_index++= arr[j++];
        }
 
        for (int index = left; index < temp_index; index++) {
            arr[index] = temp[index];
        }
    }
 
    private static void output_merge_arr(int[] arr) {
        
        for (int i = 0; i < arr.length; i++) {
            System.out.print(arr[i] + " ");
        }
        System.out.println();
    }
 
}
http://colorscripter.com/info#e" target="_blank" style="color:#4f4f4f; text-decoration:none">Colored by Color Scripter
728x90
반응형
728x90
반응형

 

이진탐색 알고리즘

이진탐색(Binary Search) 알고리즘은 원소를 반으로 분할(분류)하여 찾는 방법입니다.

이진탐색 알고리즘 조건

★ 모든 원소는 정렬되어야 한다. 

초기 세팅 변수 left = 0 , rigth = 배열 길이-1 , mid = (left+right)/2

  • 찾고자 하는 KEY 값이 arr[mid]인 경우 mid위치가 찾고자하는 KEY값의 INDEX위치
  • 찾고자 하는 KEY 값이 arr[mid]보다 작은 경우 mid위치보다 (왼쪽)에 위치한다. (오름차순일 경우)
  • 찾고자 하는 KEY 값이 arr[mid]보다 큰 경우 mid위치보다 (오른쪽)에 위치한다. (오름차순일 경우)

 

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
public class BinarySearch {
    public static void main(String[] args) {
 
        /* 찾고자 하는 원소들 */
        int[] arr = { 319345087 };
 
        /* 찾고자 하는 KEY값 */
        int key = 19;
 
        binarySearch(arr, key);
    }
 
    private static void binarySearch(int[] arr, int key) {
 
        /* 배열의 첫번째 인덱스 값 */
        int left = 0;
 
        /* 배열이라서 -1함 */
        int right = arr.length - 1;
        int mid;
 
        while (left <= right) {
 
            /* 중앙값을 계산한다 */
            mid = (left + right) / 2;
 
            if (key == arr[mid]) {
                System.out.println(key + "값의 Array Index 위치 : " + mid);
                break;
            }
 
            /* 찾고자 하는 KEY값이 배열의 중앙값보다 작을경우 */
            if (key < arr[mid]) {
 
                /* 데이터는 왼쪽에 위치함으로 right를 mid에서 1을 뺀 값으로 변경 */
                right = mid - 1;
            }
 
            /* 찾고자 하는 KEY값이 배열의 중앙값보다 클 경우 */
            else {
 
                /* 데이터는 오른쪽에 위치함으로 left값을 mid에서 1을 더한 값으로 변경 */
                left = mid + 1;
            }
        }
    }
}
 
http://colorscripter.com/info#e" target="_blank" style="color:#4f4f4f; text-decoration:none">Colored by Color Scripter
728x90
반응형

+ Recent posts