690. Employee Importance
程序员文章站
2024-03-22 12:21:52
...
int getImportance(vector<Employee*> employees, int id) {
queue<int> q;
int res=0;
q.push(id);
while(!q.empty()){
int t=q.front();q.pop();
for(auto emp:employees)
if(emp->id==t)
{
for(auto a:emp->subordinates)
q.push(a);
res+=emp->importance;
}
}
return res;
}
上一篇: 一群菜鸟们的“员工信息管理系统”(C语言课程设计)
下一篇: 员工信息管理系统
推荐阅读
-
【Leetcode】690. Employee Importance
-
690. Employee Importance
-
aisell(3) employee的crud
-
数据库查询-编写一个 SQL 查询,获取 Employee 表中第二高的薪水(Salary)
-
如果查询表employee中的字段名和字段的数据类型,还有约束条件。 博客分类: oracle SQL
-
【机器学习笔记】使用lightgbm画并保存Feature Importance
-
oracle的练习表---employee 博客分类: 资源 OracleSQLMySQLAccessBlog
-
jmu-Java-03面向对象-06-继承覆盖综合练习-Person、Student、Employee、Company (20 分) ///答案,不包括解析
-
Deep feature importance awareness based no-reference image quality prediction
-
创建一个TreeSet对象,并在其中添加一些员工对象(Employee),其姓名和工资分别是:张三8000,李四6000,王五5600,马六7500.最后按照工资的大小,降序输出(提示:让Employ