aboutsummaryrefslogtreecommitdiff
path: root/files/vi/tu-dien-thuat-ngu/algorithm/index.html
diff options
context:
space:
mode:
authorPeter Bengtsson <mail@peterbe.com>2020-12-08 14:43:23 -0500
committerPeter Bengtsson <mail@peterbe.com>2020-12-08 14:43:23 -0500
commit218934fa2ed1c702a6d3923d2aa2cc6b43c48684 (patch)
treea9ef8ac1e1b8fe4207b6d64d3841bfb8990b6fd0 /files/vi/tu-dien-thuat-ngu/algorithm/index.html
parent074785cea106179cb3305637055ab0a009ca74f2 (diff)
downloadtranslated-content-218934fa2ed1c702a6d3923d2aa2cc6b43c48684.tar.gz
translated-content-218934fa2ed1c702a6d3923d2aa2cc6b43c48684.tar.bz2
translated-content-218934fa2ed1c702a6d3923d2aa2cc6b43c48684.zip
initial commit
Diffstat (limited to 'files/vi/tu-dien-thuat-ngu/algorithm/index.html')
-rw-r--r--files/vi/tu-dien-thuat-ngu/algorithm/index.html36
1 files changed, 36 insertions, 0 deletions
diff --git a/files/vi/tu-dien-thuat-ngu/algorithm/index.html b/files/vi/tu-dien-thuat-ngu/algorithm/index.html
new file mode 100644
index 0000000000..79accd5810
--- /dev/null
+++ b/files/vi/tu-dien-thuat-ngu/algorithm/index.html
@@ -0,0 +1,36 @@
+---
+title: Thuật Toán
+slug: Tu-dien-thuat-ngu/Algorithm
+tags:
+ - thuật toán
+translation_of: Glossary/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>