So I'm printing a b-tree by level. A node has max 3 keys and max 4 children, its your typical 2-3-4 tree. The code works fine for most stuff except for when I add "2 5 8 1 3 6 9 7 11 12 10 4". Specifically the problem is push (2 5) and (11) on my queue then count (2 5) children. Afterwards I go to pop its children but (11) is in the way and screws it up.
void BFS(TwoThreeFourTree tree, Node start)
{
ArrayList<String> level = new ArrayList<String>();
int levCount = 0;
LinkedList<Node> queue = new LinkedList<Node>();
queue.add(start);
level.add("(" + keys(start) + ")");
while (!queue.isEmpty())
{
Node vertix = queue.remove();
for (Node child : vertix.child)
{
if (child == null) break;
queue.add(child);
levCount++;
}
String allChild = "";
Node temp[] = new Node[levCount];
while (levCount > 0)
{
temp[levCount - 1] = queue.remove();
allChild = allChild.concat("(" + keys(temp[levCount - 1]) + ")");
levCount--;
}
for (Node child : temp)
queue.addFirst(child);
if (levCount == 0 && allChild != "")
level.add(allChild);
}
for (String stuff : level)
{
System.out.println(stuff);
}
System.out.println("----------------------");
}