-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdataTree.lua
executable file
·66 lines (58 loc) · 1.61 KB
/
dataTree.lua
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
--
-- DataTree.lua
--
-- DataTreeModel - Simple Toolkit for Information Visualization
--
-- Copyright (c) 2018-2019 Armando Arce - [email protected]
--
-- This library is free software; you can redistribute it and/or modify
-- it under the terms of the MIT license. See LICENSE for details.
--
require "DataTreeCore"
function compute(self,field,fn,flag)
addField(self,field)
setField(self,field,0,totalCount(self))
traversal(self,root(self),fn,flag)
end
function computeHeight(self)
compute(self,'height',
function(node,child)
self.height[node] = math.max((self.height[node] or 0),self.height[child]+1)
end)
end
function computeBreadth(self)
compute(self,'breadth',
function(node,child)
if self.breadth[child]==0 then
self.breadth[node] = (self.breadth[node] or 0) + 1
else
self.breadth[node] = (self.breadth[node] or 0) + self.breadth[child]
end
end)
end
function computeDegree(self)
compute(self,'degree',
function(node,child)
self.degree[node] = (self.degree[node] or 0) + (self.degree[child] or 0) + 1
end)
end
function computeLevel(self)
compute(self,'level',
function(node,child)
self.level[child] = self.level[node] + 1
end,true)
end
function _createRegularTree(self,node,level,branches)
if (level==0) then return end
local child = NULL
for i=0,branches-1 do
child = addChild(self,node,tostring(node))
_createRegularTree(self,child,level-1,branches)
end
end
function createRegularTree(level,branches)
local tree = DataTree()
local root = newNode(tree,'0')
_createRegularTree(tree,root,level,branches)
return tree
end