Dictionary    Maps    Thesaurus    Translate    Advanced >   


Tip: Click a synonym from the results below to see its synonyms.

No results could be found matching the exact term traversal in the thesaurus.
Try one of these suggestions:
tear  terra  therefore  throw  torpor  traverse  trifurcate  tripartite  tripper  trooper  trouper 
Dictionary Results for traversal:
1. WordNet® 3.0 (2006)
traversal
    n 1: taking a zigzag path on skis [syn: traversal, traverse]
    2: travel across [syn: traversal, traverse]

2. The Free On-line Dictionary of Computing (30 December 2018)
traversal
in-order traversal
post-order traversal
pre-order traversal
traverse

    Processing nodes in a graph one at a time, usually
   in some specified order.  Traversal of a tree is recursively
   defined to mean visiting the root node and traversing its
   children.  Visiting a node usually involves transforming it in
   some way or collecting data from it.

   In "pre-order traversal", a node is visited __before__ its
   children.  In "post-order" traversal, a node is visited
   __after__ its children.  The more rarely used "in-order"
   traversal is generally applicable only to binary trees, and is
   where you visit first a node's left child, then the node
   itself, and then its right child.

   For the binary tree:

        T
       / \
      I   S
     / \
    D   E

   A pre-order traversal visits the nodes in the order T I D E S.
   A post-order traversal visits them in the order D E I S T.  An
   in-order traversal visits them in the order D I E T S.

   (2001-10-01)


Common Misspellings >
Most Popular Searches: Define Misanthrope, Define Pulchritudinous, Define Happy, Define Veracity, Define Cornucopia, Define Almuerzo, Define Atresic, Define URL, Definitions Of Words, Definition Of Get Up, Definition Of Quid Pro Quo, Definition Of Irreconcilable Differences, Definition Of Word, Synonyms of Repetitive, Synonym Dictionary, Synonym Antonyms. See our main index and map index for more details.

©2011-2024 ZebraWords.com - Define Yourself - The Search for Meanings and Meaning Means I Mean. All content subject to terms and conditions as set out here. Contact Us, peruse our Privacy Policy