某公司的秋招 笔试题 附代码

题目:二叉树路径查找

给定一棵二叉树(结构如下),其中每个节点值为整数。给定一个值 K,求所有满足如下条件的路径并将路径 上节点的值打印出来: 1、路径方向必须向下,即只能从父节点指向子节点 2、路径并不是必须从根节点开始或在叶节点结束。即树上任意节点开始向下走到任意节点的路径都 允许。 3、路径上的节点得分之和等于给定值 K。节点得分=节点值+节点所在层(根节点为 0,之后每层+1)。

参考答案

#include <iostream>
#include <sstream>
#include <vector>
#include <queue>
#include <string>

using namespace std;

// 树的结构体
struct TreeNode {
    int val;
    TreeNode* left;
    TreeNode* right;
    TreeNode(int x) : val(x), left(NULL), right(NULL) {}
};

//输出路径
void printPath(const vector<int>& path)
{
    for (int i = 0; i < path.size(); i++) {
        if (i != 0) cout << " ";
        cout << path[i];
    }
    cout << endl;
}

//根据序列构造树
TreeNode* buildTree(const vector<string>& nodes) {
    if (nodes.empty()) return nullptr;

    TreeNode* root = new TreeNode(stoi(nodes[0]));
    queue<TreeNode*> q;
    q.push(root);

    int i = 1;
    while (!q.empty()) {
        TreeNode* node = q.front();
        q.pop();

        if (i < nodes.size() && nodes[i] != "null") {
            node->left = new TreeNode(stoi(nodes[i]));
            q.push(node->left);
        }
        ++i;

        if (i < nodes.size() && nodes[i] != "null") {
            node->right = new TreeNode(stoi(nodes[i]));
            q.push(node->right);
        }
        ++i;
    }

    return root;
}

//从指定节点开始寻找路径,不一定是根节点
void findPath(TreeNode* node, int restSum , int depth, vector<int>& path, vector<vector<int>>& res) {
    if (!node) return;

    int new_sum = restSum - node->val - depth;
    path.push_back(node->val);

    // debug: 输出剩余的路径数目
    //cout << new_sum << "\t";
    //printPath(path);


    if (new_sum == 0) {
        res.push_back(path);
    }

    findPath(node->left, new_sum, depth + 1, path, res);
    findPath(node->right, new_sum, depth + 1, path, res);

    path.pop_back();
}

//递归从每个节点开始找
void findPathCurNode(TreeNode* root, int sum, vector<vector<int>>& res, int depth) {
    if (!root) return;

    vector<int> path;
    findPath(root, sum, depth, path, res);

    findPathCurNode(root->left, sum, res, depth+1);
    findPathCurNode(root->right, sum, res, depth + 1);
}


int main() {
    while (true) {
        cout << "input K and Tree:" << endl;

        int K; cin >> K;
        cin.ignore();

        string line; getline(cin, line);
        stringstream ss(line);

        vector<string> nodes;
        string node;
        while (ss >> node) nodes.push_back(node);

        TreeNode* root = buildTree(nodes);

        vector<vector<int>> res;
        findPathCurNode(root, K, res, 0);


        cout << endl << "output:" << endl;
        for (const auto& path : res) {
            printPath(path);
        }
        cout << endl;
    }
    


}

全部评论
和我实习二面笔试题目一样,然后就没后续了
4
送花
回复
分享
发布于 2023-11-21 15:34 江苏
哥太牛了
2
送花
回复
分享
发布于 2023-11-20 20:29 湖南
滴滴
校招火热招聘中
官网直投
佬,offer里有说违约金多少吗
2
送花
回复
分享
发布于 2023-11-30 19:28 江苏
和我提前批笔试一样
2
送花
回复
分享
发布于 2023-12-03 22:52 陕西

相关推荐

头像
不愿透露姓名的神秘牛友
04-02 16:43
已编辑
华为 智能车控 18*12-16 本科985
点赞 评论 收藏
转发
15 23 评论
分享
牛客网
牛客企业服务