摘要: public class Solution { List list = new List(); private void postTree(TreeNode root) { if (root != null) { list.Add(root.val); ... 阅读全文
posted @ 2019-01-08 12:38 Sempron2800+ 阅读(125) 评论(0) 推荐(0) 编辑