aboutsummaryrefslogtreecommitdiff
path: root/files/zh-cn/glossary/algorithm
diff options
context:
space:
mode:
authorFlorian Merz <me@fiji-flo.de>2021-02-11 12:56:40 +0100
committerFlorian Merz <me@fiji-flo.de>2021-02-11 12:56:40 +0100
commit310fd066e91f454b990372ffa30e803cc8120975 (patch)
treed5d900deb656a5da18e0b60d00f0db73f3a2e88e /files/zh-cn/glossary/algorithm
parent8260a606c143e6b55a467edf017a56bdcd6cba7e (diff)
downloadtranslated-content-310fd066e91f454b990372ffa30e803cc8120975.tar.gz
translated-content-310fd066e91f454b990372ffa30e803cc8120975.tar.bz2
translated-content-310fd066e91f454b990372ffa30e803cc8120975.zip
unslug zh-cn: move
Diffstat (limited to 'files/zh-cn/glossary/algorithm')
-rw-r--r--files/zh-cn/glossary/algorithm/index.html37
1 files changed, 37 insertions, 0 deletions
diff --git a/files/zh-cn/glossary/algorithm/index.html b/files/zh-cn/glossary/algorithm/index.html
new file mode 100644
index 0000000000..8dcea73131
--- /dev/null
+++ b/files/zh-cn/glossary/algorithm/index.html
@@ -0,0 +1,37 @@
+---
+title: 算法
+slug: Glossary/算法
+tags:
+ - 专业术语
+ - 编程基础
+translation_of: Glossary/Algorithm
+---
+<p>算法是一个良定义的具体计算步骤的一个序列。</p>
+
+<p>换句话说,一个算法就是由人或机器可重复的解决问题的方法。计算机科学家们使用算法的复杂度(又称O标记法)来表示算法的效率。</p>
+
+<p>例如:</p>
+
+<ul>
+ <li>一道菜谱就是供人使用的算法</li>
+ <li>一种编程中常用的排序算法就是用来描述计算机如何给数据排序的</li>
+</ul>
+
+<p>常用的算法有寻找最优路径算法,例如“旅行推销员问题”、“树的遍历算法”等。</p>
+
+<p>还有很多机器学习算法例如“线性回归”、“决策树”、“随机森林”、“支持向量机”、“循环神经网络(RNN)”、“长短时记忆(LSTM)神经网络”、“卷积神经网络(CNN)”、“深度卷积神经网络”等。</p>
+
+<h2 id="更多详情">更多详情</h2>
+
+<h3 id="通用知识库(维基百科)">通用知识库(维基百科)</h3>
+
+<ul>
+ <li>{{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>