Select Keyboard:
Türkçe ▾
  1. Türkçe
  2. English
  3. العربية
  4. Dansk
  5. Deutsch
  6. Ελληνικά
  7. Español
  8. فارسی
  9. Français
  10. Italiano
  11. Kurdî
  12. Nederlands
  13. Polski
  14. Português Brasileiro
  15. Português
  16. Русский
  17. Suomi
  18. Svenska
  19. 中文注音符号
  20. 中文仓颉输入法
X
"1234567890*-Bksp
Tabqwertyuıopğü,
CapsasdfghjklşiEnter
Shift<zxcvbnmöç.Shift
AltGr

depth-first

listen to the pronunciation of depth-first
Английский Язык - Английский Язык

Определение depth-first в Английский Язык Английский Язык словарь

depth-first search
an algorithm for traversing a tree or graph where one starts at the root nad explores as far as possible along each branch before backtracking
depth-first search
Depth-first search (DFS) is an algorithm for traversing or searching a tree, tree structure, or graph. Intuitively, one starts at the root (selecting some node as the root in the graph case) and explores as far as possible along each branch before backtracking. Formally, DFS is an uninformed search that progresses by expanding the first child node of the search tree that appears and thus going deeper and deeper until a goal node is found, or until it hits a node that has no children. Then the search backtracks, returning to the most recent node it hadn't finished exploring. In a non-recursive implementation, all freshly expanded nodes are added to a LIFO stack for exploration