剑指offer 学习笔记 二叉树中和为某一值的路径
面试题34:二叉树中和为某一值的路径。输入一棵二叉树和一个整数,打印出二叉树中节点值的和为输入整数的所有路径。从树的根节点开始,往下一直到叶节点所经过的节点形成一条路径。二叉树节点定义如下:
struct BinaryTreeNode{
int m_nValue;
BinaryTreeNode *m_pLeft;
BinaryTreeNode *m_pRight;
};
遍历树中所有路径的值,把符合条件的输出:
#include <iostream>
#include <vector>
using namespace std;
struct BinaryTreeNode {
int m_nValue;
BinaryTreeNode* m_pLeft;
BinaryTreeNode* m_pRight;
};
BinaryTreeNode* ConstructCore(int* startPreorder, int* endPreorder, int* startInorder, int* endInorder) { // 创建树
BinaryTreeNode* root = new BinaryTreeNode();
root->m_nValue = *startPreorder;
root->m_pLeft = root->m_pRight = nullptr;
if (startPreorder == endPreorder) { // 当递归到前序遍历只含一个元素时
if (startInorder == endInorder && *startPreorder == *startInorder) { // 此时若中序遍历也只含一个元素并且这个元素值与前序遍历的元素值相同时,递归到底成功返回
return root;
} else { // 否则当前序和中序遍历的个数不相等(前序遍历只含一个元素但中序遍历有多个元素)或值不相等(前序遍历和中序遍历元素数都为1但这两个值不等)时
throw exception("Invalid input."); // 说明输入的前序和中序遍历不匹配
}
}
int* rootInorder = startInorder;
while (rootInorder < endInorder && *rootInorder != *startPreorder) { // 遍历中序序列找到根节点
++rootInorder;
}
if (rootInorder == endInorder && *rootInorder != *startPreorder) { // 若以上循环结束仍未找到根节点,说明输入有误
throw exception("Invalid input");
}
int leftLength = rootInorder - startInorder; // 左子树长度
int* leftPreorderEnd = startPreorder + leftLength; // 左子树尾边界
if (leftLength > 0) { // 当左子树仍存在时
root->m_pLeft = ConstructCore(startPreorder + 1, leftPreorderEnd, startInorder, rootInorder - 1); // 继续递归左子树
}
if (leftLength < endPreorder - startPreorder) { // 左子树长度小于当前遍历的树节点数-1(去掉根节点)时,说明存在右子树
root->m_pRight = ConstructCore(leftPreorderEnd + 1, endPreorder, rootInorder + 1, endInorder); // 继续递归右子树
}
return root;
}
BinaryTreeNode* Construct(int* preorder, int* inorder, int length) { // 创建树
if (preorder == nullptr || inorder == nullptr || length <= 0) {
return nullptr;
}
return ConstructCore(preorder, preorder + length - 1, inorder, inorder + length - 1);
}
void FindPath(BinaryTreeNode* pRoot, int expectedSum, vector<int> path) { // 形参声明为普通变量,保证对子树的路径操作不影响子树之前的路径
if (pRoot->m_nValue > expectedSum) { // 递归到节点值比和还要大时,放弃这个子树
return;
}
path.push_back(pRoot->m_nValue);
if (pRoot->m_nValue == expectedSum) {
if (pRoot->m_pLeft == nullptr && pRoot->m_pRight == nullptr) {
for (int i : path) {
cout << i << " ";
}
cout << endl;
}
} else {
expectedSum -= pRoot->m_nValue;
if (pRoot->m_pLeft != nullptr) {
FindPath(pRoot->m_pLeft, expectedSum, path);
}
if (pRoot->m_pRight != nullptr) {
FindPath(pRoot->m_pRight, expectedSum, path);
}
}
}
void FindPath(BinaryTreeNode* pRoot, int sum) {
if (pRoot == nullptr) {
return;
}
vector<int> path;
FindPath(pRoot, sum, path);
}
int main() {
int preorder[] = { 10,5,4,7,12 };
int inorder[] = { 4,5,7,10,12 };
BinaryTreeNode *pRoot = Construct(preorder, inorder, 5);
FindPath(pRoot, 22);
}
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· 从 HTTP 原因短语缺失研究 HTTP/2 和 HTTP/3 的设计差异
· AI与.NET技术实操系列:向量存储与相似性搜索在 .NET 中的实现
· 基于Microsoft.Extensions.AI核心库实现RAG应用
· Linux系列:如何用heaptrack跟踪.NET程序的非托管内存泄露
· 开发者必知的日志记录最佳实践
· winform 绘制太阳,地球,月球 运作规律
· AI与.NET技术实操系列(五):向量存储与相似性搜索在 .NET 中的实现
· 超详细:普通电脑也行Windows部署deepseek R1训练数据并当服务器共享给他人
· 【硬核科普】Trae如何「偷看」你的代码?零基础破解AI编程运行原理
· 上周热点回顾(3.3-3.9)
2019-03-07 JAVA获取对象类名
2019-03-07 递归
2019-03-07 JAVA对象的equals方法
2019-03-07 JAVA对象的toString方法