aboutsummaryrefslogtreecommitdiff
path: root/files/vi/glossary/algorithm
diff options
context:
space:
mode:
authorFlorian Dieminger <me@fiji-flo.de>2021-02-11 18:29:28 +0100
committerGitHub <noreply@github.com>2021-02-11 18:29:28 +0100
commit964decad361766e85d928a56f0ab80af0e75c172 (patch)
tree64e802be7fd6e93243b93f5813fe7ae2873ac1b3 /files/vi/glossary/algorithm
parent890776270440331dcd24d34dc5e1cef2167aa70a (diff)
parent9201e4212c57af09becda69f17c17a3a34f226c2 (diff)
downloadtranslated-content-964decad361766e85d928a56f0ab80af0e75c172.tar.gz
translated-content-964decad361766e85d928a56f0ab80af0e75c172.tar.bz2
translated-content-964decad361766e85d928a56f0ab80af0e75c172.zip
Merge pull request #61 from fiji-flo/unslugging-vi
Unslugging vi
Diffstat (limited to 'files/vi/glossary/algorithm')
-rw-r--r--files/vi/glossary/algorithm/index.html37
1 files changed, 37 insertions, 0 deletions
diff --git a/files/vi/glossary/algorithm/index.html b/files/vi/glossary/algorithm/index.html
new file mode 100644
index 0000000000..93fcf4df29
--- /dev/null
+++ b/files/vi/glossary/algorithm/index.html
@@ -0,0 +1,37 @@
+---
+title: Thuật Toán
+slug: Glossary/Algorithm
+tags:
+ - thuật toán
+translation_of: Glossary/Algorithm
+original_slug: Tu-dien-thuat-ngu/Algorithm
+---
+<p>Thuật toán là một chuỗi khép kín những hướng dẫn để thực hiện một chức năng.</p>
+
+<p>Nói cách khác, thuật toán mô tả phương án để giải quyết một vấn đề và nhờ đó nó có thể được sử dụng lại mỗi khi cần, bởi con người hay thậm chí là máy móc. Các nhà khoa học máy tính so sánh hiệu quả của các thuật toán thông qua khái niệm "Độ phức tạp" hay mang cái tên khác là "Big O"</p>
+
+<p>Lấy ví dụ:</p>
+
+<ul>
+ <li>Công thức nấu ăn là một thuật toán đơn giản của con người</li>
+ <li>Thuật toán phân loại thường được dùng trong lập trình để dạy cho máy móc cách phân loại dữ liệu</li>
+</ul>
+
+<p>Những thuật toán thông dụng là thuật toán tìm đường, ví dụ như the Traveling Salemen Problem, Tree Traversal Algorithms, v..v</p>
+
+<p>Có cả những thuật toán chỉ dành riêng cho học máy, như là Linear Regression, Logistic Regression, Decision Tree, Random Forest, Support Vector Machine, Recurrent Neural Network (RNN), Long Short Term Memory (LSTM) Neural Network, Convolutional Neural Network (CNN), Deep Convolutional Neural Network v..v...</p>
+
+<h2 id="Learn_more">Learn more</h2>
+
+<h3 id="General_knowledge">General knowledge</h3>
+
+<ul>
+ <li>{{Interwiki("wikipedia", "Algorithm", "Algorithm")}} on Wikipedia</li>
+</ul>
+
+<h3 id="Technical_reference">Technical reference</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>