About 96,700 results
Open links in new tab
  1. TRAVERSAL Definition & Meaning - Merriam-Webster

    The meaning of TRAVERSAL is the act or an instance of traversing.

  2. TRAVERSAL Definition & Meaning | Dictionary.com

    TRAVERSAL definition: the act or process of passing across, over, or through. See examples of traversal used in a sentence.

  3. Tree Traversal Techniques - GeeksforGeeks

    Dec 6, 2025 · Tree traversal refers to the process of visiting or accessing each node of a tree exactly once in a specific order. Unlike linear data structures such as arrays, linked lists, or queues (which …

  4. Traversal - The AI SRE for complex systems

    Traversal automatically compiles incident data into a clear, editable, evidence-based report — freeing engineers from hours of manual reporting.

  5. TRAVERSAL definition in American English | Collins English Dictionary

    TRAVERSAL definition: to pass or go over or back and forth over (something); cross | Meaning, pronunciation, translations and examples in American English

  6. Traversal - definition of traversal by The Free Dictionary

    Define traversal. traversal synonyms, traversal pronunciation, traversal translation, English dictionary definition of traversal. v. tra·versed , tra·vers·ing , tra·vers·es v. tr. 1. a. To travel or pass across, …

  7. Tree traversal - Wikipedia

    In computer science, tree traversal (also known as tree search and walking the tree) is a form of graph traversal and refers to the process of visiting (e.g. retrieving, updating, or deleting) each node in a …

  8. Tree Traversal - Online Tutorials Library

    There are three ways which we use to traverse a tree −. Generally, we traverse a tree to search or locate a given item or key in the tree or to print all the values it contains. In this traversal method, the …

  9. Traversal in Array - GeeksforGeeks

    Feb 19, 2025 · Traversal in an array refers to the process of accessing each element in the array sequentially, typically to perform a specific operation, such as searching, sorting, or modifying the …

  10. Tree Traversal - Programiz

    Traversing a tree means visiting every node in the tree. In this tutorial, you will understand the different tree traversal techniques in C, C++, Java, and Python.