Is there any advantage for using visitor pattern in a recursive scenario? If so can you demonstrate it programmatically?
|
1
|
|
|
|
|
|
How about traversing a binary tree? e.g.
|
||
|
|
|
|
I think the main benefit is that it only requires iterations over collections 1 level deep. It can call back, but at least the accept() method will be clean. |
||
|
|
