参考: LEETCODE 中的member access within null pointer of type 'struct ListNode' 解决 leetcode 编译问题:Line x: member access within null pointer of type 'struct TreeNode' 在leetcode上提交代码后出现编译错误: Line x: member access within null pointer of type 'struct TreeNode'
https://blog.csdn.net/styshoo/article/details/52865386 在LeetCode中,TreeNode是经常用到的一个结构体,表示数据结构树(Tree)中的一个节点.其官方定义如下: public class TreeNode { int val; TreeNode left; TreeNode right; TreeNode(int x) { val = x; }}123456 在Tree的题目中,常会给出一些测试用例,用一些特定的格式来表示一棵树