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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
|
package bjc.utils.funcdata;
import java.util.function.Consumer;
import java.util.function.Function;
import java.util.function.Predicate;
import java.util.function.UnaryOperator;
import bjc.utils.funcdata.bst.TreeLinearizationMethod;
import bjc.utils.funcutils.StringUtils;
/**
* A node in a homogenous tree.
*
* @author ben
*
* @param <ContainedType>
*/
public class Tree<ContainedType> implements ITree<ContainedType> {
private ContainedType data;
private IFunctionalList<ITree<ContainedType>> children;
private boolean hasChildren;
private int childCount;
/**
* Create a new leaf node in a tree
*
* @param leafToken
* The data to store as a leaf node
*/
public Tree(ContainedType leafToken) {
data = leafToken;
hasChildren = false;
}
/**
* Create a new tree node with the specified children
*
* @param leafToken
* The data to hold in this node
* @param childrn
* A list of children for this node
*/
@SafeVarargs
public Tree(ContainedType leafToken, ITree<ContainedType>... childrn) {
data = leafToken;
hasChildren = true;
childCount = 0;
children = new FunctionalList<>();
for (ITree<ContainedType> child : childrn) {
children.add(child);
childCount++;
}
}
private Tree(ContainedType leafToken,
IFunctionalList<ITree<ContainedType>> childrn) {
data = leafToken;
hasChildren = true;
childCount = childrn.getSize();
children = childrn;
}
@Override
public void addChild(ITree<ContainedType> child) {
if (hasChildren == false) {
hasChildren = true;
children = new FunctionalList<>();
}
childCount++;
children.add(child);
}
@Override
public <TransformedType> TransformedType transformHead(
Function<ContainedType, TransformedType> transformer) {
return transformer.apply(data);
}
@Override
public int getChildrenCount() {
return childCount;
}
@Override
public <TransformedType> TransformedType transformChild(int childNo,
Function<ITree<ContainedType>, TransformedType> transformer) {
if (childNo < 0 || childNo > (childCount - 1)) {
throw new IllegalArgumentException(
"Child index #" + childNo + " is invalid");
}
return transformer.apply(children.getByIndex(childNo));
}
@Override
public <NewType, ReturnedType> ReturnedType collapse(
Function<ContainedType, NewType> leafTransform,
Function<ContainedType, Function<IFunctionalList<NewType>, NewType>> nodeCollapser,
Function<NewType, ReturnedType> resultTransformer) {
return resultTransformer
.apply(internalCollapse(leafTransform, nodeCollapser));
}
protected <NewType> NewType internalCollapse(
Function<ContainedType, NewType> leafTransform,
Function<ContainedType, Function<IFunctionalList<NewType>, NewType>> nodeCollapser) {
if (hasChildren) {
Function<IFunctionalList<NewType>, NewType> nodeTransformer =
nodeCollapser.apply(data);
IFunctionalList<NewType> collapsedChildren =
children.map((child) -> {
return child.collapse(leafTransform, nodeCollapser,
(subTreeVal) -> subTreeVal);
});
return nodeTransformer.apply(collapsedChildren);
}
return leafTransform.apply(data);
}
@Override
public ITree<ContainedType> flatMapTree(
Function<ContainedType, ITree<ContainedType>> mapper) {
if (hasChildren) {
ITree<ContainedType> flatMappedData = mapper.apply(data);
children.map((child) -> child.flatMapTree(mapper))
.forEach((child) -> flatMappedData.addChild(child));
return flatMappedData;
}
return mapper.apply(data);
}
@Override
public void selectiveTransform(Predicate<ContainedType> nodePicker,
UnaryOperator<ContainedType> transformer) {
if (hasChildren) {
children.forEach((child) -> child
.selectiveTransform(nodePicker, transformer));
} else {
data = transformer.apply(data);
}
}
@Override
public <MappedType> ITree<MappedType> transformTree(
Function<ContainedType, MappedType> transformer) {
if (hasChildren) {
IFunctionalList<ITree<MappedType>> transformedChildren =
children.map(
(child) -> child.transformTree(transformer));
return new Tree<>(transformer.apply(data),
transformedChildren);
}
return new Tree<>(transformer.apply(data));
}
@Override
public void traverse(TreeLinearizationMethod linearizationMethod,
Consumer<ContainedType> action) {
if (hasChildren) {
switch (linearizationMethod) {
case INORDER:
if (childCount != 2) {
throw new IllegalArgumentException(
"Can only do in-order traversal for binary trees.");
}
children.getByIndex(0).traverse(linearizationMethod,
action);
action.accept(data);
children.getByIndex(1).traverse(linearizationMethod,
action);
break;
case POSTORDER:
children.forEach((child) -> child
.traverse(linearizationMethod, action));
action.accept(data);
break;
case PREORDER:
action.accept(data);
children.forEach((child) -> child
.traverse(linearizationMethod, action));
break;
default:
break;
}
} else {
action.accept(data);
}
}
@Override
public <MappedType> ITree<MappedType> rebuildTree(
Function<ContainedType, MappedType> leafTransformer,
Function<ContainedType, MappedType> operatorTransformer) {
if (hasChildren) {
IFunctionalList<ITree<MappedType>> mappedChildren =
children.map((child) -> {
return child.rebuildTree(leafTransformer,
operatorTransformer);
});
return new Tree<>(operatorTransformer.apply(data),
mappedChildren);
}
return new Tree<>(leafTransformer.apply(data));
}
@Override
public String toString() {
StringBuilder builder = new StringBuilder();
internalToString(builder, 1, true);
builder.deleteCharAt(builder.length() - 1);
return builder.toString();
}
protected void internalToString(StringBuilder builder, int indentLevel,
boolean initial) {
if (!initial) {
StringUtils.indentNLevels(builder, indentLevel);
}
builder.append("Node: ");
builder.append(data == null ? "(null)" : data.toString());
builder.append("\n");
if (hasChildren) {
children.forEach((child) -> {
((Tree<ContainedType>) child).internalToString(builder,
indentLevel + 2, false);
});
}
}
@Override
public ITree<ContainedType> topDownTransform(
Function<ContainedType, TopDownTransformResult> transformPicker,
UnaryOperator<ITree<ContainedType>> transformer) {
TopDownTransformResult transformResult =
transformPicker.apply(data);
switch (transformResult) {
case PASSTHROUGH:
ITree<ContainedType> result = new Tree<>(data);
if (hasChildren) {
children.forEach((child) -> {
result.addChild(child.topDownTransform(
transformPicker, transformer));
});
}
return result;
case SKIP:
return this;
case TRANSFORM:
return transformer.apply(this);
default:
throw new IllegalArgumentException(
"Recieved unknown transform result "
+ transformResult);
}
}
}
|