Leetcode:面试题 04.03. 特定深度节点链表 Leetcode:面试题 04.03. 特定深度节点链表 先贴一下自己写过一个模板,按层数遍历: https://www.cnblogs.com/cell-coder/p/12344619.html 里面有这类题的模板 这道题就是这种类型的变种,只需要按题目意思改一下就ok 贴一下我的通过代码: /** * Definition for a binary tree node. * struct TreeNode { * int val;…