513、找树左下角的值
给定一个二叉树,在树的最后一行找到最左边的值。
class Solution {
public int findBottomLeftValue(TreeNode root) {
Queue<TreeNode> queue = new LinkedList<>();
int res = 0;
if(root.left == null && root.right == null){
return root.val;
}
queue.offer(root);
while(!queue.isEmpty()){
int len = queue.size();
for(int i= 0; i<len; i++){
TreeNode poll = queue.poll();
if (i==0) res = poll.val;
if (poll.left != null) queue.offer(poll.left);
if (poll.right != null) queue.offer(poll.right);
}
}
return res;
}
}
用层序遍历很好理解,只要记录最后一层的第一个叶子节点的值就好了。但递归方法还没太理解...
112、路径总和
给定一个二叉树和一个目标和,判断该树中是否存在根节点到叶子节点的路径,这条路径上所有节点值相加等于目标和。
说明: 叶子节点是指没有子节点的节点。
示例: 给定如下二叉树,以及目标和 sum = 22
class Solution {
public boolean hasPathSum(TreeNode root, int targetSum) {
int res = PathSum(root, targetSum);
if(res==1){
return true;
}else{
return false;
}
}
public int PathSum(TreeNode root, int targetSum) {
int tmpSum = targetSum;
if(root == null) return 0;
if(root.left == null && root.right == null && root.val == tmpSum) return 1;
if(root.left == null && root.right == null && root.val != tmpSum) return 0;
int leftSum = PathSum(root.left, tmpSum-root.val);
int rightSum = PathSum(root.right, tmpSum-root.val);
if(leftSum == 0 && rightSum == 0){
return 0;
}else{
return 1;
}
}
}
递归,分别从左右子树中去找。
13、路径总和ii
给定一个二叉树和一个目标和,找到所有从根节点到叶子节点路径总和等于给定目标和的路径。
说明: 叶子节点是指没有子节点的节点。
class Solution {
public List<List<Integer>> pathSum(TreeNode root, int targetSum) {
List<List<Integer>> res = new ArrayList<>();
if(root == null) return res;
List<Integer> path = new LinkedList<>();
PathSum(root, targetSum, res, path);
return res;
}
public void PathSum(TreeNode root, int targetSum, List<List<Integer>> res, List<Integer> path) {
path.add(root.val);
if(root.left == null && root.right == null){
if(targetSum - root.val==0){
res.add(new ArrayList<>(path));
}else{
return;
}
}
if(root.left != null){
PathSum(root.left, targetSum-root.val, res, path);
path.remove(path.size()-1);//这里需要回溯
}
if(root.right != null){
PathSum(root.right, targetSum-root.val, res, path);
path.remove(path.size()-1);//这里需要回溯
}
}
}
对于回溯的理解还不到位欸。
106、从中序与后序遍历序列构造二叉树
根据一棵树的中序遍历与后序遍历构造二叉树。
注意: 你可以假设树中没有重复的元素。
例如,给出
- 中序遍历 inorder = [9,3,15,20,7]
- 后序遍历 postorder = [9,15,7,20,3] 返回二叉树
class Solution {
Map<Integer, Integer> map; // 方便根据数值查找位置
public TreeNode buildTree(int[] inorder, int[] postorder) {
map = new HashMap<>();
for (int i = 0; i < inorder.length; i++) { // 用map保存中序序列的数值对应位置
map.put(inorder[i], i);
}
return findNode(inorder, 0, inorder.length, postorder,0, postorder.length); // 前闭后开
}
public TreeNode findNode(int[] inorder, int inBegin, int inEnd, int[] postorder, int postBegin, int postEnd) {
// 参数里的范围都是前闭后开
if (inBegin >= inEnd || postBegin >= postEnd) { // 不满足左闭右开,说明没有元素,返回空树
return null;
}
int rootIndex = map.get(postorder[postEnd - 1]); // 找到后序遍历的最后一个元素在中序遍历中的位置
TreeNode root = new TreeNode(inorder[rootIndex]); // 构造结点
int lenOfLeft = rootIndex - inBegin; // 保存中序左子树个数,用来确定后序数列的个数
root.left = findNode(inorder, inBegin, rootIndex,
postorder, postBegin, postBegin + lenOfLeft);
root.right = findNode(inorder, rootIndex + 1, inEnd,
postorder, postBegin + lenOfLeft, postEnd - 1);
return root;
}
}
105、从前序与中序遍历序列构造二叉树
class Solution {
Map<Integer, Integer> map;
public TreeNode buildTree(int[] preorder, int[] inorder) {
map = new HashMap<>();
for (int i = 0; i < inorder.length; i++) { // 用map保存中序序列的数值对应位置
map.put(inorder[i], i);
}
return findNode(preorder, 0, preorder.length, inorder, 0, inorder.length); // 前闭后开
}
public TreeNode findNode(int[] preorder, int preBegin, int preEnd, int[] inorder, int inBegin, int inEnd) {
// 参数里的范围都是前闭后开
if (preBegin >= preEnd || inBegin >= inEnd) { // 不满足左闭右开,说明没有元素,返回空树
return null;
}
int rootIndex = map.get(preorder[preBegin]); // 找到前序遍历的第一个元素在中序遍历中的位置
TreeNode root = new TreeNode(inorder[rootIndex]); // 构造结点
int lenOfLeft = rootIndex - inBegin; // 保存中序左子树个数,用来确定前序数列的个数
root.left = findNode(preorder, preBegin + 1, preBegin + lenOfLeft + 1,
inorder, inBegin, rootIndex);
root.right = findNode(preorder, preBegin + lenOfLeft + 1, preEnd,
inorder, rootIndex + 1, inEnd);
return root;
}
}