Given a binary tree, return the inorder traversal of its nodes' values. For example:Given binary tree [1,null,2,3], 1 \ 2 / 3 return [1,3,2]. 本题如果用recursive的方法非常简单.这里主要考察用iterative的方法求解.例如: [1,3,4,6,7,8,10,13,14] 从8开始依次将8,3,1 push入栈.这时root=None,每当roo…