DEV Community

Discussion on: How often You Have to use the Concepts of Trees in your algo

Collapse
 
karfau profile image
Christian Bewernitz

At work we are dealing with huge (XML) trees as input, that are very dynamic in nature.
We are actually very happy to have found a way to convert the input into maps/ lists. Our algorithms are still recursive, but much easier to grasp and extend because we don't need to "think in trees" all the time.