RadarURL

조합과 순열 생성 알고리즘의 개선 = Enhancement of Combination and Permutation Generation Algorithms

http://www.riss.kr/link?id=T13218045 복사

 

 

감사의 글

 

To my family and professor,

for their love and support.

& my lovely wife and pretty angels.

Special thanks to HyungMin, JaeWon, JinSook.

 

J.S.Jang

 

 

 

감사의글.jpg

 

 

 
 
 
 
초록 ( Abstract )
  • This paper deals with programs and algorithms that generate a full data set as a list of combinations and permutations according to the basic combinatorial requirements of combination, permutation, and r-permutation. The total data list generated by t...
  • This paper deals with programs and algorithms that generate a full data set as a list of combinations and permutations according to the basic combinatorial requirements of combination, permutation, and r-permutation. The total data list generated by the programs and algorithms for combination and permutation is used in the total inspection that the total data testing method for quality inspection or selecting the simulation input value. The run-time of the algorithms for combination and permutation exponentially raises when input value increases. We propose an improved algorithm having a shorter run time.
    We conducted a preliminary study by surveying programs for existing permutation and combination algorithms that satisfy combination, permutation, and r-permutation solutions. Then, we made the programs to execute and explained the contents and operation of the algorithms. Further, we organized the programs using pseudo-codes.
    With regard to combination, permutation, and r-permutation algorithms, we identify three properties: lexicographical sorting of the total data, total data generation ability according to the order of input values, and recursiveness of the algorithms. We also compared the run-times of the programs and then identified the relationship between the input values and the performance.
    We propose improved programs with shorter run-times than existing algorithms, and we also identify the characteristics of the algorithms and degree of performance improvement through performance evaluation. The proposed programs reduce the run-time as follows: adopting the non-recursive mode instead of the recursive mode for combinations, combining combination programs and permutation programs for r-permutation. According to our performance test, combination programs and r-permutation programs improve the run speed from minimum 12% to maximum 43% and from minimum 49% to maximum 370% respectively, as compared to the fastest analyzed program.
    Based on the proposed algorithms and pseudo-code, total data generation programs could be easily applied to specific cases, and the validity of the total data survey performance could be verified by predicting the run-time of total data list generation. By using the pseudo-code of the proposed algorithms and programs, the total data can be generated in minimum time. Algorithms with improved performance are expected to be used in the total inspection of industrial products, route selection for the entire wired and wireless networks, allocation of non-competitive sections on wireless networks, and selection of stable streaming servers for monitoring information transmission in M2M(Machine to Machine) environments.
닫기
  • 논문에서는 기초적인 콤비나토리얼 문제인 조합(combination)과 순열(permutation), r-순열(r-permutation)을 이용하여 전수데이터를 조합과 순열의 목록으로 생성하는 프로그램과 알고리즘을 다룬다. ...
  • 논문에서는 기초적인 콤비나토리얼 문제인 조합(combination)과 순열(permutation), r-순열(r-permutation)을 이용하여 전수데이터를 조합과 순열의 목록으로 생성하는 프로그램과 알고리즘을 다룬다. 조합과 순열 생성 알고리즘과 프로그램을 통해 생성되는 전수데이터 목록은 상품에 대한 품질검사를 위한 전수조사(total inspection), 시뮬레이션의 입력값 선정 등에서 사용된다. 조합과 순열 생성 알고리즘은 입력값이 증가함에 따라 수행시간이 지수적으로 증가하기 때문에 수행시간을 단축할 수 있는 개선된 알고리즘을 제안한다.
    선행연구로는 조합, 순열, r-순열 문제의 해법을 만족하는 기존 순열, 조합 생성 알고리즘에 대해 구현된 프로그램들을 조사하여 수행이 가능하도록 프로그램을 완성하고 알고리즘의 내용과 동작방법을 설명하였으며 의사코드(pseudo-code)로 정리한다.
    각 조합, 순열, r-순열 알고리즘에 대해 전수데이터의 사전적 정렬 여부, 입력값의 순서에 따른 전수데이터 생성가능 여부, 알고리즘의 재귀형태 여부의 세 가지 속성을 확인하고, 각 프로그램의 수행시간에 대한 비교와 입력값과 성능과의 연관관계를 확인한다.
    연구를 통해 기존 알고리즘 보다 수행시간을 단축하여 성능을 개선한 프로그램을 제안하고 성능평가를 통해 알고리즘의 특성과 성능의 개선도를 확인하였다. 조합 문제에는 재귀 형식에서 비재귀 형식으로 변형시키고 r-순열 문제에서는 조합 프로그램과 순열 프로그램을 결합하는 방법으로 수행시간을 단축하였다. 성능평가에 대한 분석결과는 수집한 가장 빠른 프로그램에 비해서 수행속도를 조합문제에서 최소 12%에서 최대 43%, r-순열 문제에서 최소 49%에서 최대 370%로 개선하였다.
    제안한 알고리즘과 의사코드를 기반으로 다양한 응용분야에 따라 속성을 확인하여 응용분야의 특성에 적합한 전수데이터 생성 프로그램을 쉽게 적용이 가능하며, 전수조사 목록의 생성에 소요되는 수행시간을 예측하여 전수조사의 수행에 대한 타당성 여부를 결정할 수 있다. 또한, 제공한 알고리즘과 프로그램 의사코드를 이용하여 최소의 시간으로 전수데이터를 생성할 수 있다.
    성능을 개선한 알고리즘들은 산업제품의 전수검사, 유무선망에서의 전체 경로의 선택, 무선망에서 비경쟁구간의 할당, M2M(Machine to Machine) 환경에서 모니터링 정보 전송을 위한 안정된 스트리밍서버를 선택 등을 위해 활용이 가능할 것으로 기대한다.
닫기
목차 ( Index )
  • 국문초록 ⅹⅲ
  • 영문초록 ⅹⅴ
  •  
  • 제 1 장 서 론 1
  • 1.1 연구의 배경 1
  • 1.2 관련 연구동향 3
  • 1.3 연구 목적 및 내용 4
  • 1.4 논문의 구성 10
  •  
  • 제 2 장 관련 연구 11
  • 2.1 조합, 순열 생성 알고리즘 11
  • 2.1.1 조합의 생성 14
  • 2.1.2 순열의 생성 16
  • 2.2 알고리즘 사전조사 19
  •  
  • 제 3 장 기존 알고리즘 연구 25
  • 3.1 기존 조합 생성 알고리즘 25
  • 3.1.1 기존 조합 생성 알고리즘 정의 26
  • 3.1.2 기존 조합 생성 알고리즘 동작 28
  • 3.2 기존 순열 생성 알고리즘 29
  • 3.2.1 기존 순열 생성 알고리즘 정의 30
  • 3.2.2 기존 순열 생성 알고리즘 동작 39
  • 3.3 기존 r-순열 생성 알고리즘 41
  • 3.3.1 기존 r-순열 생성 알고리즘 정의 41
  • 3.3.2 기존 r-순열 생성 알고리즘 동작 43
  •  
  • 제 4 장 개선된 조합, r-순열 생성 알고리즘 45
  • 4.1 개선된 조합 생성 알고리즘 45
  • 4.1.1 개선된 조합 생성 알고리즘 정의 45
  • 4.1.2 개선된 조합 생성 알고리즘 동작 47
  • 4.2 개선된 r-순열 생성 알고리즘 49
  • 4.2.1 개선된 r-순열 생성 알고리즘 정의 49
  • 4.2.2 개선된 r-순열 생성 알고리즘 동작 53
  •  
  • 제 5 장 성능평가 56
  • 5.1 평가 방법 56
  • 5.2 조합, 순열, r-순열별 성능평가 63
  • 5.2.1 조합 문제 성능평가 64
  • 5.2.2 순열 문제 성능평가 68
  • 5.2.3 r-순열 문제 성능평가 70
  • 5.3 단위 수행시간별 성능평가 75
  • 5.3.1 조합 문제 단위 수행시간 성능평가 76
  • 5.3.2 순열 문제 단위 수행시간 성능평가 80
  • 5.3.3 r-순열 문제 단위 수행시간 성능평가 82
  • 5.4 평가 결과 85
  •  
  • 제 6 장 결론 87
  •  
  • 참고문헌 89

 

출처 : http://www.riss.kr/search/detail/DetailView.do?p_mat_type=be54d9b8bc7cdb09&control_no=1295291567fd1db8ffe0bdc3ef48d419#redirect

?

공부 게시판

공부에 도움되는 글을 올려주세요.

List of Articles
번호 분류 제목 글쓴이 날짜 조회 수
공지 [공지] 공부 게시판 입니다. 처누 2003.08.18 927527
69 논문 전수데이터를 생성하는 빠른 콤비나토리얼 프로그램 (Fast Combinatorial Programs Generating Total Data) file JaeSoo 2015.07.15 639
68 논문 스코퍼스(Scopus) 지수 JaeSoo 2014.10.21 857
67 논문 [논문] Ubiquitous-City Integrated Authentication System (UCIAS) - Jae-Soo Jang, Hyung-Min Lim, Journal of Intelligent Manufacturing(JIM), February 2014, 장재수 file JaeSoo 2014.02.21 2026
66 논문 [논문] 다중링크를 이용한 다양한 크기의 데이터 전송 (Data transmission of various size that use multiplex link) - 장재수,학위논문(석사), 숭실대학교 대학원 : 컴퓨터학과(일원) 컴퓨터통신 2003. 12 file JaeSoo 2014.01.25 2850
» 논문 [논문] 조합과 순열 생성 알고리즘의 개선(Enhancement of Combination and Permutation Generation Algorithms) - 장재수,학위논문(박사), 숭실대학교 대학원 : 컴퓨터학과(일원) 컴퓨터통신 2013. 8 file JaeSoo 2014.01.25 2588
64 논문 제 논문에 실린 감사의 글입니다 JaeSoo 2013.06.12 7191
63 논문 박사학위논문을 끝내고 감사하는 마음의 글 JaeSoo 2013.06.12 5913
62 논문 로그(Log)에 대하여.. JaeSoo 2013.06.10 3636
61 논문 Excel 엑셀, 상용 로그, 자연 로그(LOG) 구하기 계산 함수; Common, Natural Logarithm JaeSoo 2013.06.10 6921
60 논문 논문 투고 과정 file JaeSoo 2013.06.07 4812
59 논문 수리과학 영어논문 작성법 file JaeSoo 2013.06.07 5216
58 논문 논문 작성과 형식 - 1.10 퇴고와 기타사항 JaeSoo 2013.05.19 4827
57 논문 논문 작성과 형식 - 1.8 표와 그림 JaeSoo 2013.05.19 5730
56 논문 논문 작성과 형식 - 1.9 주와 참고문헌의 처리 JaeSoo 2013.05.19 4388
55 논문 논문 작성과 형식 - 1.7 인용과 인증 JaeSoo 2013.05.19 4657
54 논문 논문 작성과 형식 - 1.6 논문 작성시 문장의 형식 JaeSoo 2013.05.19 6227
53 논문 논문 작성과 형식 - 1.5 논문의 내용 전개 JaeSoo 2013.05.19 4905
52 논문 논문 작성과 형식 - 1.4 논문의 내용구성 JaeSoo 2013.05.19 5151
51 논문 논문 작성과 형식 - 1.3 논문의 작성의 개요 JaeSoo 2013.05.19 5184
50 논문 논문 작성과 형식 - 1.2 학술논문의 형식 JaeSoo 2013.05.19 6538
Board Pagination Prev 1 2 3 4 Next
/ 4


즐겨찾기 (가족)

JAESOO's HOMEPAGE


YOUNGAE's HOMEPAGE


장여은 홈페이지


장여희 홈페이지


장여원 홈페이지


즐겨찾기 (업무)

알리카페 홀릭

숭실대 컴퓨터 통신연구실 (서창진)

말레이시아 KL Sentral 한국인 GuestHouse


즐겨찾기 (취미)

어드민아이디

유에코 사랑회

아스가르드 좋은사람/나쁜사람

JServer.kr

제이서버 메타블로그

재수 티스토리


즐겨찾기 (강의, 커뮤니티)

재수 강의 홈페이지


한소리


VTMODE.COM


숭실대 인공지능학과


숭실대 통신연구실


베너