摘要: 树 二叉树 1. Leetcode 100 Same Tree class Solution { public: bool isSameTree(TreeNode* p, TreeNode* q) { if(p==NULL && q==NULL) return true; if(p!=NULL && 阅读全文
posted @ 2020-04-16 22:47 jenny1000000 阅读(144) 评论(0) 推荐(0) 编辑