About 1,230 results
Open links in new tab
  1. Introduction to Tree Data Structure | GeeksforGeeks

    Mar 4, 2025 · A tree in data structures is a hierarchical data structure that consists of nodes connected by edges. It is used to represent relationships between elements, where each node holds data and is connected to other nodes in a parent-child relationship.

  2. Tree Data Structure - GeeksforGeeks

    Mar 21, 2025 · Tree Data Structure is a non-linear data structure in which a collection of elements known as nodes are connected to each other via edges such that there exists exactly one path between any two nodes. Basics of Tree Data Structure. Introduction to Tree; Types of Trees in Data Structures; Applications of tree data structure; Binary Tree. Binary ...

  3. Types of Trees in Data Structures - GeeksforGeeks

    Mar 21, 2025 · A tree is a type of data structure that represents a hierarchical relationship between data elements, called nodes. The top node in the tree is called the root, and the elements below the root are called child nodes.

  4. Data Structures Tutorial - GeeksforGeeks

    Apr 12, 2025 · Data structures are ways to organize and store data so it can be used efficiently. They are essential in computer science for managing and processing information in programs. Common types of data structures include arrays, linked lists, stacks, queues, trees, and graphs.

  5. What is Tree | Tree Definition & Meaning in DSA - GeeksforGeeks

    Jun 6, 2023 · A tree is defined as a hierarchical data structure in which the elements (known as nodes) are linked together via edges such that there is only one path between any two node of the tree.

  6. Applications of tree data structure - GeeksforGeeks

    Mar 21, 2025 · A tree in data structures is a hierarchical data structure that consists of nodes connected by edges. It is used to represent relationships between elements, where each node holds data and is connected to other nodes in a parent-child relationship.

  7. Binary Tree Data Structure - GeeksforGeeks

    Mar 4, 2025 · Binary Tree is a non-linear and hierarchical data structure where each node has at most two children referred to as the left child and the right child. The topmost node in a binary tree is called the root, and the bottom-most nodes are called leaves.

  8. Introduction to Data Structures - GeeksforGeeks

    Apr 13, 2025 · Unlike Arrays, Linked Lists, Stack and queues, which are linear data structures, trees are hierarchical data structures. A binary tree is a tree data structure in which each node has at most two children, which are referred to as the left child and the right child.

  9. Trie Data Structure Tutorial - GeeksforGeeks

    Apr 21, 2025 · The trie data structure, also known as a prefix tree, is a tree-like data structure used for efficient retrieval of key-value pairs. It is commonly used for implementing dictionaries and autocomplete features, making it a fundamental component in many search algorithms.

  10. Introduction to Splay tree data structure - GeeksforGeeks

    Apr 11, 2024 · Splay tree is a self-adjusting binary search tree data structure, which means that the tree structure is adjusted dynamically based on the accessed or inserted elements. In other words, the tree automatically reorganizes itself so that frequently accessed or inserted elements become closer to the root node.

  11. Some results have been removed
Refresh