By repeatedly applying the basic associativity law $(x+y)+z = x+(y+z)$, one can get from any one expression with binary addition to any other with the variables in the same order.
Specifically, given two expressions only involving binary addition that are related by the general principle of associativity, one can brute force get both into fully-left-associated form: $$(\ldots((a+b)+c)+d)+\ldots)+z$$ by applying $$x+(y+z) \rightarrow (x+y)+z$$ everywhere possible in a brute force fashion.
Thus one can get from one expression to the other by first applying $$x+(y+z) \rightarrow (x+y)+z$$ to get to the fully-left-associated form and then applying $$(x+y)+z \rightarrow x+(y+z)$$ to get back to the other expression.
But this is clearly not the most optimal route in some cases. Is anything known about the optimal route? That is, given two expressions in a binary operation related by general associativity, what is the fewest number of applications of the associativity law to get from one to the other?