RISS 학술연구정보서비스

검색
다국어 입력

http://chineseinput.net/에서 pinyin(병음)방식으로 중국어를 변환할 수 있습니다.

변환된 중국어를 복사하여 사용하시면 됩니다.

예시)
  • 中文 을 입력하시려면 zhongwen을 입력하시고 space를누르시면됩니다.
  • 北京 을 입력하시려면 beijing을 입력하시고 space를 누르시면 됩니다.
닫기
    인기검색어 순위 펼치기

    RISS 인기검색어

      Solving Methods of Traveling Salesman Problem : 巡廻外販員問題에 대한 解法

      한글로보기

      https://www.riss.kr/link?id=T10665555

      • 0

        상세조회
      • 0

        다운로드
      서지정보 열기
      • 내보내기
      • 내책장담기
      • 공유하기
      • 오류접수

      부가정보

      국문 초록 (Abstract) kakao i 다국어 번역

      본 논문은 순회외판원문제에 대한 몇 가지 해법을 소개하고 순회외판원문제의 효과적인 근사해를 구하기 위하여 새로운 알고리즘을 제공하고자 한다. 주어진 알고리즘이 효과적인 알고리즘인지 과학적으로 판단하기 위해서는 최악의 실행시간뿐만 아니라 평균 실행시간까지 조사해야하지만 본 논문에서는 최악의 실행시간으로만 한정하기로 한다.
      제안된 새로운 알고리즘은 다음과 같은 4단계로 시행된다.
      1단계 : 각 도시간 비용을 크기 순으로 정열한 후 비용이 작은 r개의 도시를 제외한 (n-r)개의 도시만 선택
      2단계 : (n-r)개의 도시를 최근거리인접점 알고리즘을 이용하여 초기해를 구한다.
      3단계 : 초기해에 분지한계법을 이용하여 부분최적해를 구한다.
      4단계 : 부분최적해와 제외한 r개의 도시로 근사해를 구한다.
      최악의 실행시간으로 한정하여 비교·분석한 결과 제안된 알고리즘의 실행시간은 O((n-r)!)로 분지한계법보다는 실행시간이 더 빠르지만 최근거리인접점 알고리즘이나 k-optimal 알고리즘보다는 더 느린 것으로 나타났다.
      번역하기

      본 논문은 순회외판원문제에 대한 몇 가지 해법을 소개하고 순회외판원문제의 효과적인 근사해를 구하기 위하여 새로운 알고리즘을 제공하고자 한다. 주어진 알고리즘이 효과적인 알고리...

      본 논문은 순회외판원문제에 대한 몇 가지 해법을 소개하고 순회외판원문제의 효과적인 근사해를 구하기 위하여 새로운 알고리즘을 제공하고자 한다. 주어진 알고리즘이 효과적인 알고리즘인지 과학적으로 판단하기 위해서는 최악의 실행시간뿐만 아니라 평균 실행시간까지 조사해야하지만 본 논문에서는 최악의 실행시간으로만 한정하기로 한다.
      제안된 새로운 알고리즘은 다음과 같은 4단계로 시행된다.
      1단계 : 각 도시간 비용을 크기 순으로 정열한 후 비용이 작은 r개의 도시를 제외한 (n-r)개의 도시만 선택
      2단계 : (n-r)개의 도시를 최근거리인접점 알고리즘을 이용하여 초기해를 구한다.
      3단계 : 초기해에 분지한계법을 이용하여 부분최적해를 구한다.
      4단계 : 부분최적해와 제외한 r개의 도시로 근사해를 구한다.
      최악의 실행시간으로 한정하여 비교·분석한 결과 제안된 알고리즘의 실행시간은 O((n-r)!)로 분지한계법보다는 실행시간이 더 빠르지만 최근거리인접점 알고리즘이나 k-optimal 알고리즘보다는 더 느린 것으로 나타났다.

      더보기

      다국어 초록 (Multilingual Abstract) kakao i 다국어 번역

      We introduce the traveling salesman problem and survey several solving methods for it. And we suggest the new algorithm of solving methods for the traveling salesman problem. To observe efficiency with scientific exactitude of this algorithm, we compare and analyze not only the worst-case running time but also average-case between suggested algorithm and other, but we restrict only the worst-case running time in this paper and compute it.
      The algorithm for an approximate solution of the TSP is following steps:
      Step 1. The number of costs of all cities, that is n^(2), is sort in the order of their (small) size by Merge sort. And choose n-r cities among n cities, where r(<n)) is the number of cities with small cost among costs sort.
      Step 2. Initial assignment with n-r cities : Find the initial solution using nearest neighbor algorithm. It is unnecessary that the initial solution is tour at this place.
      Step 3. Find partial optimal solution using Branch and bound algorithm for n-r cities.
      Step 4. Find approximate solution from partial optimal solution for n-r cities and r cities.
      Running time of suggested algorithm is O((n-r)!) in the worst-case. From a point of view of worst-case running time, O((n-r)!) is faster than that of branch and bound, but slower than that of nearest neighbor and k-optimal.
      번역하기

      We introduce the traveling salesman problem and survey several solving methods for it. And we suggest the new algorithm of solving methods for the traveling salesman problem. To observe efficiency with scientific exactitude of this algorithm, we compa...

      We introduce the traveling salesman problem and survey several solving methods for it. And we suggest the new algorithm of solving methods for the traveling salesman problem. To observe efficiency with scientific exactitude of this algorithm, we compare and analyze not only the worst-case running time but also average-case between suggested algorithm and other, but we restrict only the worst-case running time in this paper and compute it.
      The algorithm for an approximate solution of the TSP is following steps:
      Step 1. The number of costs of all cities, that is n^(2), is sort in the order of their (small) size by Merge sort. And choose n-r cities among n cities, where r(<n)) is the number of cities with small cost among costs sort.
      Step 2. Initial assignment with n-r cities : Find the initial solution using nearest neighbor algorithm. It is unnecessary that the initial solution is tour at this place.
      Step 3. Find partial optimal solution using Branch and bound algorithm for n-r cities.
      Step 4. Find approximate solution from partial optimal solution for n-r cities and r cities.
      Running time of suggested algorithm is O((n-r)!) in the worst-case. From a point of view of worst-case running time, O((n-r)!) is faster than that of branch and bound, but slower than that of nearest neighbor and k-optimal.

      더보기

      목차 (Table of Contents)

      • CONTENTS = ⅰ
      • (國文抄錄) = ⅱ
      • Ⅰ. INTRODUCTION = 1
      • Ⅱ. MATHEMATICAL FORMULATION OF TSP = 3
      • Ⅲ. ALGORITHM ANALYSIS = 6
      • CONTENTS = ⅰ
      • (國文抄錄) = ⅱ
      • Ⅰ. INTRODUCTION = 1
      • Ⅱ. MATHEMATICAL FORMULATION OF TSP = 3
      • Ⅲ. ALGORITHM ANALYSIS = 6
      • Ⅳ. HEURISTIC AND APPROXIMATE ALGORITHMS FOR THE TSP = 12
      • 4.1. Nearest neighbor algorithm. = 13
      • 4.2. Branch and Bound algorithm. = 13
      • 4.3. K-Optimal algorithm. = 15
      • 4.4. Genetic algorithm. = 16
      • Ⅴ. SUGGESTION OF NEW ALGORITHM FOR SOLVING METHOD OF TSP = 19
      • Ⅵ. CONCLUSION = 29
      • REFERENCES = 30
      • ABSTRACT = 31
      더보기

      분석정보

      View

      상세정보조회

      0

      Usage

      원문다운로드

      0

      대출신청

      0

      복사신청

      0

      EDDS신청

      0

      동일 주제 내 활용도 TOP

      더보기

      주제

      연도별 연구동향

      연도별 활용동향

      연관논문

      연구자 네트워크맵

      공동연구자 (7)

      유사연구자 (20) 활용도상위20명

      이 자료와 함께 이용한 RISS 자료

      나만을 위한 추천자료

      해외이동버튼