I have the following function that prunes a tree data structure :
public static void pruneTree(final ConditionTreeNode treeNode) {
final List<ConditionTreeNode> subTrees = treeNode.getSubTrees();
for (ConditionTreeNode current : subTrees) {
pruneTree(current);
}
if(subTrees.isEmpty()) {
final ConditionTreeNode parent = treeNode.getParent();
parent.removeConditionTreeNode(treeNode);
}
if (treeNode.isLeaf()) {
//this is the base case
if (treeNode.isPrunable()) {
final ConditionTreeNode parent = treeNode.getParent();
parent.removeConditionTreeNode(treeNode);
}
return;
}
}
and I want to know what the best way to prune this is. I'm getting ConcurrentModificationExceptions currently, and I've read that you can copy the collection, and remove the original -- or remove from an iterator. Can someone help me understand what I need to do inorder for this method to work?