[leetcode.com]算法题目 - Same Tree
摘要:
Given two binary trees, write a function to check if they are equal or not.Two binary trees are considered equal if they are structurally identical and the nodes have the same value. 1 /** 2 * Definition for binary tree 3 * struct TreeNode { 4 * int val; 5 * TreeNode *left; 6 * Tree... 阅读全文
posted @ 2013-09-09 22:23 Horstxu 阅读(211) 评论(0) 推荐(0) 编辑