Hi I am trying to fill a binary tree with letters which will then be used to encode a Morse code sequence but I am stuck on my insert() method its adding a letter twice or more.
If the code has a '.' it will go left If the code has '-' it will go right
And then I am trying to traverse it, but my output is showing me lots of the same letter
heres my insert()
private void insert(BinaryNode localRoot, BinaryNode node){
if (localRoot == null) { //Replace empty tree with new tree with the item at the root.
localRoot = node;
return;
}
String result = node.getData().toString();//getting Item from BinaryNode.java
//looping over morse code
for(int cnt = 0;cnt<result.length();cnt++){
if(result.charAt(cnt)=='.')
{
if (localRoot.getLeftSubtree() == null){
localRoot.setLeftSubtree(node);}
}
else if(result.charAt(cnt)=='-'){
if (localRoot.getRightSubtree() == null)
localRoot.setRightSubtree(node);
}
}
}