“Rekursi Tinggi Pohon” Kode Jawaban

tinggi pohon biner

int height(Node* root)
{
    // Base case: empty tree has height 0
    if (root == nullptr)
        return 0;
 
    // recur for left and right subtree and consider maximum depth
    return 1 + max(height(root->left), height(root->right));
}
Elegant Elk

Rekursi Tinggi Pohon

	public static int height(Node root) {
      	// Write your code here.
        
          if(root == null) 
            return -1;
        
         return 1 + Math.max(height(root.left), height(root.right));
         
    }
Dr. iterations

Jawaban yang mirip dengan “Rekursi Tinggi Pohon”

Pertanyaan yang mirip dengan “Rekursi Tinggi Pohon”

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya