I was given this coding question for a technical interview: Given a binary tree, implement a method to populate the list post_ordered_list with the data of the nodes traversed in postorder, iteratively. For example, given that a binary tree traversing items: Items in-order: [1, 2, 3, 4, 5, 6, 7] Items post-order: [1, 3, 2,Read more