Leetcode 690. Employee Importance
程序员文章站
2024-03-22 12:38:22
...
文章作者:Tyan
博客:noahsnail.com | CSDN | 简书
1. Description
2. Solution
- Non-recurrent
/*
// Employee info
class Employee {
public:
// It's the unique ID of each node.
// unique id of this employee
int id;
// the importance value of this employee
int importance;
// the id of direct subordinates
vector<int> subordinates;
};
*/
class Solution {
public:
int getImportance(vector<Employee*> employees, int id) {
int value = 0;
queue<int> ids;
map<int, Employee*> hashId;
for(int i = 0; i < employees.size(); i++) {
hashId[employees[i]->id] = employees[i];
}
ids.push(id);
while(!ids.empty()) {
Employee* current = hashId[ids.front()];
ids.pop();
value += current->importance;
if(!current->subordinates.empty()) {
for(int i = 0; i < current->subordinates.size(); i++) {
ids.push(current->subordinates[i]);
}
}
}
return value;
}
};
- Recurrent
/*
// Employee info
class Employee {
public:
// It's the unique ID of each node.
// unique id of this employee
int id;
// the importance value of this employee
int importance;
// the id of direct subordinates
vector<int> subordinates;
};
*/
class Solution {
public:
int getImportance(vector<Employee*> employees, int id) {
int value = 0;
map<int, Employee*> hashId;
for(int i = 0; i < employees.size(); i++) {
hashId[employees[i]->id] = employees[i];
}
addImportance(hashId, id, value);
return value;
}
private:
void addImportance(map<int, Employee*>& hashId, int id, int& value) {
Employee* current = hashId[id];
value += current->importance;
if(!current->subordinates.empty()) {
for(int i = 0; i < current->subordinates.size(); i++) {
addImportance(hashId, current->subordinates[i], value);
}
}
}
};
Reference
上一篇: 一分钟搞定所有 “树”
下一篇: Windows安装Ceres
推荐阅读
-
Leetcode 690. Employee Importance
-
Leetcode每日一题:690.employee-importance(员工的重要性)
-
DFS:690. Employee Importance
-
【Leetcode】690. Employee Importance
-
LeetCode 690. Employee Importance
-
690. Employee Importance
-
LeetCode-690. Employee Importance
-
690-Employee Importance
-
【Leetcode】690. 员工的重要性
-
Java/690.Employee Importance 员工的重要性