61.7k views
3 votes
Suppose you are creating a tree-structured menu to handle the grouping of over ten thousand objects. You will need to decide how many levels will exist in the tree and then how many items will exist per level. In order to deal with this depth-breadth trade-off, which one is preferred?

1 Answer

4 votes

Answer:

Breadth (increased items per level with lesser levels)

Step-by-step explanation:

In programming, when creating a tree-structured menu to handle the grouping of over ten thousand objects. You will need to decide how many levels will exist in the tree and then how many items will exist per level. In order to avoid ambiguity in dealing with this depth-breadth trade-off, you may choose breadth which will mean more items per level with lesser levels.

User Damani
by
4.8k points