About 32,900 results
Open links in new tab
  1. 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.

  2. Introduction to Binary Tree - GeeksforGeeks

    Apr 2, 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.

  3. Binary Search Tree - GeeksforGeeks

    Feb 8, 2025 · Binary Search Tree (BST) is a data structure that is commonly used to implement efficient searching, insertion, and deletion operations along with maintaining sorted sequence of data. Please remember the following properties of BSTs before moving forward.

  4. 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.

  5. Introduction to Binary Search Tree - GeeksforGeeks

    Dec 12, 2024 · Binary Search Tree (BST) is a data structure that is commonly used to implement efficient searching, insertion, and deletion operations along with maintaining sorted sequence of data. Please remember the following properties of BSTs before moving forward.

  6. Tree Traversal Techniques - GeeksforGeeks

    Mar 11, 2025 · Diagonal traversal helps in visualizing the hierarchical structure of binary trees, particularly in tree-based data structures like binary search trees (BSTs) and heap trees. Diagonal traversal can be utilized to calculate path sums along diagonals in a binary tree.

  7. Binary Tree in C - GeeksforGeeks

    Jun 6, 2024 · In this article, we will learn the basics of binary trees, types of binary trees, basic operations that can be performed on binary trees as well as applications, advantages, and disadvantages of binary trees in C.

  8. Complete Binary Tree - GeeksforGeeks

    Sep 3, 2023 · 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.

  9. Binary Tree Traversal - GeeksforGeeks

    Dec 27, 2024 · Traversing a binary tree means visiting all the nodes in a specific order. There are several traversal methods, each with its unique applications and benefits. This article will explore the main types of binary tree traversal: in-order, pre-order, post-order, and level-order. Types of Binary Tree Traversal

  10. 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 ...

  11. Some results have been removed
Refresh