1

Can anyone explain to me, what the value of the average branching factor is if we exclude leaf nodes when computing b?

Example:

Tree

I don't know how to calculate this in the right way :/

Thanks a lot

Alexis Olson
  • 33,168
  • 5
  • 31
  • 54
Pythonlearner
  • 15
  • 1
  • 4

1 Answers1

0

Iterate through each non-terminal node and average the number of branches it has. In your example, the average should be between 1 and 2.

Related: How to Find the Branching Factor of a Tree

Alexis Olson
  • 33,168
  • 5
  • 31
  • 54