📜  打印具有孙子的二叉树的节点

📅  最后修改于: 2021-06-26 23:12:22             🧑  作者: Mango

给定二叉树,任务是打印具有孙子代的节点。

例子:

方法:这个想法使用递归。步骤如下:

  1. 在每个节点上遍历给定的树。
  2. 检查每个节点是否具有孙子节点。
  3. 对于任何树节点(例如temp ),如果存在以下节点之一,则当前节点为祖父母节点:
    • temp-> left-> left。
    • 临时->左->右。
    • temp-> right-> left。
    • temp-> right-> right。
  4. 如果对于任何节点温度都存在上述任何条件,则该节点温度为祖父母节点。

下面是上述方法的实现:

C++
// C++ program for the above approach
#include 
using namespace std;
 
// A Binary Tree Node
struct node {
    struct node *left, *right;
    int key;
};
 
// Function to create new tree node
node* newNode(int key)
{
    node* temp = new node;
    temp->key = key;
    temp->left = temp->right = NULL;
    return temp;
}
 
// Function to print the nodes of
// the Binary Tree having a grandchild
void cal(struct node* root)
{
    // Base case to check
    // if the tree exists
 
    if (root == NULL)
        return;
 
    else {
 
        // Check if there is a left and
        // right child of the curr node
        if (root->left != NULL
            && root->right != NULL) {
 
            // Check for grandchildren
            if (root->left->left != NULL
                || root->left->right != NULL
                || root->right->left != NULL
                || root->right->right != NULL) {
 
                // Print the node's key
                cout << root->key << " ";
            }
        }
 
        // Check if the left child
        // of node is not null
        else if (root->left != NULL) {
 
            // Check for grandchildren
            if (root->left->left != NULL
                || root->left->right != NULL) {
                cout << root->key << " ";
            }
        }
 
        // Check if the right child
        // of node is not null
        else if (root->right != NULL) {
 
            // Check for grandchildren
            if (root->right->left != NULL
                || root->right->right != NULL) {
                cout << root->key << " ";
            }
        }
 
        // Recursive call on left and
        // right subtree
        cal(root->left);
        cal(root->right);
    }
}
 
// Driver Code
int main()
{
    // Given Tree
    struct node* root = newNode(1);
    root->left = newNode(2);
    root->right = newNode(3);
    root->left->left = newNode(4);
    root->left->right = newNode(5);
 
    // Function Call
    cal(root);
    return 0;
}


Java
// Java program for the above approach
import java.util.*;
 
class GFG{
 
// A Binary Tree Node
static class node
{
    node left, right;
    int key;
};
 
// Function to create new tree node
static node newNode(int key)
{
    node temp = new node();
    temp.key = key;
    temp.left = temp.right = null;
    return temp;
}
 
// Function to print the nodes of
// the Binary Tree having a grandchild
static void cal(node root)
{
     
    // Base case to check
    // if the tree exists
    if (root == null)
        return;
 
    else
    {
         
        // Check if there is a left and
        // right child of the curr node
        if (root.left != null &&
           root.right != null)
        {
             
            // Check for grandchildren
            if (root.left.left != null ||
               root.left.right != null ||
               root.right.left != null ||
              root.right.right != null)
            {
                 
                // Print the node's key
                System.out.print(root.key + " ");
            }
        }
 
        // Check if the left child
        // of node is not null
        else if (root.left != null)
        {
             
            // Check for grandchildren
            if (root.left.left != null ||
               root.left.right != null)
            {
                System.out.print(root.key + " ");
            }
        }
 
        // Check if the right child
        // of node is not null
        else if (root.right != null)
        {
             
            // Check for grandchildren
            if (root.right.left != null ||
               root.right.right != null)
            {
                System.out.print(root.key + " ");
            }
        }
 
        // Recursive call on left and
        // right subtree
        cal(root.left);
        cal(root.right);
    }
}
 
// Driver Code
public static void main(String[] args)
{
     
    // Given Tree
    node root = newNode(1);
    root.left = newNode(2);
    root.right = newNode(3);
    root.left.left = newNode(4);
    root.left.right = newNode(5);
 
    // Function call
    cal(root);
}
}
 
// This code is contributed by Amit Katiyar


Python3
# Python3 program for the
# above approach
 
# A Binary Tree Node
class newNode:
   
    def __init__(self, key):
       
        self.key = key
        self.left = None
        self.right = None
 
# Function to print the nodes
# of the Binary Tree having a
# grandchild
def cal(root):
   
    # Base case to check
    # if the tree exists
    if (root == None):
        return
 
    else:
        # Check if there is a left
        # and right child of the
        # curr node
        if (root.left != None and
            root.right != None):
           
            # Check for grandchildren
            if (root.left.left != None or
                root.left.right != None or
                root.right.left != None or
                root.right.right != None):
               
                # Print the node's key
                print(root.key, end = " ")
 
        # Check if the left child
        # of node is not None
        elif (root.left != None):
           
            # Check for grandchildren
            if (root.left.left != None or
                root.left.right != None):
                print(root.key, end = " ")
 
        # Check if the right child
        # of node is not None
        elif(root.right != None):
           
            # Check for grandchildren
            if (root.right.left != None or
                root.right.right != None):
                print(root.key, end = " ")
 
        # Recursive call on left and
        # right subtree
        cal(root.left)
        cal(root.right)
 
# Driver Code
if __name__ == '__main__':
   
    # Given Tree
    root = newNode(1)
    root.left = newNode(2)
    root.right = newNode(3)
    root.left.left = newNode(4)
    root.left.right = newNode(5)
 
    # Function Call
    cal(root)
 
# This code is contributed by SURENDRA_GANGWAR


C#
// C# program for the
// above approach
using System;
class GFG{
 
// A Binary Tree Node
public class node
{
  public node left, right;
  public int key;
};
 
// Function to create new
// tree node
static node newNode(int key)
{
  node temp = new node();
  temp.key = key;
  temp.left = temp.right = null;
  return temp;
}
 
// Function to print the
// nodes of the Binary Tree
// having a grandchild
static void cal(node root)
{
  // Base case to check
  // if the tree exists
  if (root == null)
    return;
   
  else
  {
    // Check if there is a left and
    // right child of the curr node
    if (root.left != null &&
        root.right != null)
    {
      // Check for grandchildren
      if (root.left.left != null ||
          root.left.right != null ||
          root.right.left != null ||
          root.right.right != null)
      {
        // Print the node's key
        Console.Write(root.key + " ");
      }
    }
 
    // Check if the left child
    // of node is not null
    else if (root.left != null)
    {
      // Check for grandchildren
      if (root.left.left != null ||
          root.left.right != null)
      {
        Console.Write(root.key + " ");
      }
    }
 
    // Check if the right child
    // of node is not null
    else if (root.right != null)
    {
      // Check for grandchildren
      if (root.right.left != null ||
          root.right.right != null)
      {
        Console.Write(root.key + " ");
      }
    }
 
    // Recursive call on left and
    // right subtree
    cal(root.left);
    cal(root.right);
  }
}
 
// Driver Code
public static void Main(String[] args)
{
  // Given Tree
  node root = newNode(1);
  root.left = newNode(2);
  root.right = newNode(3);
  root.left.left = newNode(4);
  root.left.right = newNode(5);
 
  // Function call
  cal(root);
}
}
 
// This code is contributed by Princi Singh


输出:
1









时间复杂度: O(N) ,其中N是节点数。
辅助空间: O(1)

如果您希望与行业专家一起参加现场课程,请参阅《 Geeks现场课程》和《 Geeks现场课程美国》。