-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnode.py
125 lines (100 loc) · 3.71 KB
/
node.py
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
"""
Class representation of node which i will be using for creating a tree.
"""
class Node:
def __init__(self, value):
"""
:param value: value of particular node
function sets value of a node to value passed, creates an array of children, and sets maxChildren to 2
"""
if not isinstance(value, int):
raise TypeError("value of the node has to be an integer")
self.value = value
self.children = []
self.maxChildren = 2
def add_child(self, child):
"""
:param child: Node object meant to be set as a child of this node or int
function for adding children to node object
"""
if isinstance(child, Node):
if len(self.children) < self.maxChildren:
self.children.append(child)
else:
raise ValueError("This node already has " + str(self.maxChildren) + " children")
elif isinstance(child, int):
if len(self.children) < self.maxChildren:
self.children.append(Node(child))
else:
raise ValueError("This node already has " + str(self.maxChildren) + " children")
else:
raise TypeError("type of the child has to be an integer or node")
def subtree_sum(self):
"""
function for summing values of elements in subtree
:return: sum of values from subtree
"""
subtreeSum = self.value
for child in self.children:
subtreeSum += child.subtree_sum()
return subtreeSum
def count_descendants(self):
"""
helper function for counting descendants of node
:return: amount of descendants
"""
count = 1
for child in self.children:
count += child.count_descendants()
return count
def subtree_average(self):
"""
function for calculating average value for elements in subtree
:return: average value for elements in subtree
"""
return self.subtree_sum() / self.count_descendants()
def get_descendants(self):
"""
helper function for getting array of node descendants
:return: array of node descendants
"""
descendants = [self.value]
for child in self.children:
descendants.extend(child.get_descendants())
return descendants
def subtree_median(self):
"""
function for calculating median value for elements in subtree
:return: median value for elements in subtree
"""
values = self.get_descendants()
values.sort()
length = len(values)
if length % 2 != 0:
return values[int(length/2)]
return (values[int((length-1)/2)] + values[int(length/2)])/2
def __str__(self, level=0):
"""
:param level: helper param for recursive usage
function to represent the tree as a string
:return: string representation of tree
"""
tree = "\t"*level + str(self.value) + "\n"
for child in self.children:
tree += child.__str__(level+1)
return tree
def parser(array):
"""
:param array: array representing a tree, each node is represented by a list in which the first element is
it's value and the next are children
function parses array into tree using Node class
:return: root of the Tree created from array
"""
root = Node(array[0])
length = len(array)
if length > 1:
i = 1
while i < length:
root.add_child(parser(array[i]))
i += 1
return root