diff options
Diffstat (limited to 'files/ko/glossary/algorithm/index.html')
-rw-r--r-- | files/ko/glossary/algorithm/index.html | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/files/ko/glossary/algorithm/index.html b/files/ko/glossary/algorithm/index.html new file mode 100644 index 0000000000..79c9820ce2 --- /dev/null +++ b/files/ko/glossary/algorithm/index.html @@ -0,0 +1,38 @@ +--- +title: Algorithm +slug: Glossary/Algorithm +tags: + - 알고리즘 +translation_of: Glossary/Algorithm +--- +<p><span class="seoSummary">알고리즘(Algorithm)은 기능을 수행하기 위한 독립된 명령어들의 집합이다.</span></p> + +<p>즉, 알고리즘은 인간이나 기계에 의해 반복적으로 해결할 수 있도록 문제를 해결하는 방법을 기술하는 수단이다. 컴퓨터 과학자들은 "알고리즘의 복잡성"이나 "빅 O" 표기법이라는 개념을 통해 알고리즘의 효율성을 비교한다.</p> + +<p>예를 들어:</p> + +<ul> + <li>요리 레시피는 인간을 위한 간단한 알고리즘이다.</li> + <li> + <p>정렬 알고리즘은 종종 컴퓨터 프로그래밍에서 데이터를 정렬하는 방법을 설명하기 위해 사용된다.</p> + </li> +</ul> + +<p>일반적인 알고리즘은 Traveling Salemen Problem, Tree Traversal Algorithms 등과 같은 길 찾기 알고리즘이다.</p> + +<p>선형 회귀, 로지스틱 회귀, 의사결정 트리, 랜덤 포레스트, 지원 벡터 머신, Recurrent Neural Network(RNN), Long Term Memory(LSTM) Neural Network, Convolutional Neural Network(CNNN), Deep Convolutional Neural Network(심층 신경망) 등의 머신 러닝 알고리즘도 있다.</p> + +<h2 id="더_알아보기">더 알아보기</h2> + +<h3 id="일반적_지식">일반적 지식</h3> + +<ul> + <li>Wikipedia의 {{Interwiki("wikipedia", "Algorithm", "Algorithm")}}</li> +</ul> + +<h3 id="기술적_참조">기술적 참조</h3> + +<ul> + <li><a href="https://www.toptal.com/developers/sorting-algorithms">Explanations of sorting algorithms</a></li> + <li><a href="http://bigocheatsheet.com/">Explanations of algorithmic complexity</a></li> +</ul> |