-
Notifications
You must be signed in to change notification settings - Fork 0
/
16-binary_tree_is_perfect.c
63 lines (46 loc) · 1.19 KB
/
16-binary_tree_is_perfect.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
#include "binary_trees.h"
/**
* binary_tree_height - measures the height of a binary tree
* @tree: pointer to the root node of the tree to measure the height
*
* Return: height of the tree
*
*/
size_t binary_tree_height(const binary_tree_t *tree)
{
size_t height_right, height_left;
if (tree == NULL)
return (0);
if (tree->left == NULL && tree->right == NULL)
return (0);
height_right = binary_tree_height(tree->right);
height_left = binary_tree_height(tree->left);
if (height_right > height_left)
return (1 + height_right);
return (1 + height_left);
}
/**
* binary_tree_is_perfect - checks if a binary tree is perfect
* @tree: pointer to the root node
*
* Return: true if perferct false otherwise
*/
int binary_tree_is_perfect(const binary_tree_t *tree)
{
int left, right;
if (tree == NULL)
return (0);
if (tree != NULL && tree->left == NULL && tree->right == NULL)
return (1);
if (tree->left == NULL || tree->right == NULL)
return (0);
left = binary_tree_height(tree->left);
right = binary_tree_height(tree->right);
if (left == right)
{
if (binary_tree_is_perfect(tree->left) &&
binary_tree_is_perfect(tree->right))
return (1);
}
return (0);
}