About 99,300 results
Open links in new tab
  1. Binary Tree Data Structure - GeeksforGeeks

    Aug 2, 2025 · A Binary Tree Data Structure is a hierarchical data structure in which each node has at most two children, referred to as the left child and the right child. It is commonly used in …

  2. Binary Tree Traversal - GeeksforGeeks

    Jul 23, 2025 · Binary trees are fundamental data structures in computer science and understanding their traversal is crucial for various applications. Traversing a binary tree means …

  3. Binary Tree in Python - GeeksforGeeks

    Jul 23, 2025 · Searching for a value in a binary tree means looking through the tree to find a node that has that value. Since binary trees do not have a specific order like binary search trees, we …

  4. How to Read Binary Search Tree from File in C++? - GeeksforGeeks

    Jul 23, 2025 · This property of the binary search tree makes it efficient for searching, insertion, and deletion operations. In this article, we will learn how to read files into a binary search tree …

  5. Basic Operations on Binary Tree with Implementations

    Jul 23, 2025 · To search for an element in a binary tree, we need to traverse the tree and check each node to see if its value matches the target element. Depending on the tree structure …

  6. Binary Tree (Array implementation) - GeeksforGeeks

    Apr 6, 2023 · Construct the standard linked representation of given Binary Tree from this given representation. Do refer in order to understand how to construct binary tree from given parent …

  7. Inorder Traversal of Binary Tree - GeeksforGeeks

    Dec 8, 2025 · The main idea is to traverse the tree recursively, starting from the root node, first completely traverse the left subtree, then visit the root node itself, and finally completely …

  8. Binary Tree in C - GeeksforGeeks

    Jul 23, 2025 · 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 …

  9. Preorder Traversal of Binary Tree - GeeksforGeeks

    Dec 8, 2025 · The main idea is to traverse the tree recursively, starting from the root node, first visit the root node itself, then completely traverse the left subtree, and finally completely …

  10. Binary Search Tree - GeeksforGeeks

    Dec 6, 2025 · A Binary Search Tree (BST) is a type of binary tree data structure in which each node contains a unique key and satisfies a specific ordering property: All nodes in the left …