题目要求

You are given a data structure of employee information, which includes the employee's unique id, his importance value and his direct subordinates' id.

For example, employee 1 is the leader of employee 2, and employee 2 is the leader of employee 3. They have importance value 15, 10 and 5, respectively. Then employee 1 has a data structure like [1, 15, [2]], and employee 2 has [2, 10, [3]], and employee 3 has [3, 5, []]. Note that although employee 3 is also a subordinate of employee 1, the relationship is not direct.

Now given the employee information of a company, and an employee id, you need to return the total importance value of this employee and all his subordinates.

题目分析及思路

定义了一个含有employee信息的数据结构,该结构包括了employee的唯一id、他的重要值以及他的直接下属的id。现给定一个公司的employee的信息,以及一个employee的id,要求返回这个employee以及他所有直接下属的重要值的总和。可以使用递归的方法,跳出递归的条件是当前employee没有直接下属,否则则遍历当前employee的所有下属获得重要值。

python代码

"""

# Employee info

class Employee:

def __init__(self, id, importance, subordinates):

# It's the unique id of each node.

# unique id of this employee

self.id = id

# the importance value of this employee

self.importance = importance

# the id of direct subordinates

self.subordinates = subordinates

"""

class Solution:

def getImportance(self, employees, id):

"""

:type employees: Employee

:type id: int

:rtype: int

"""

ids = [employee.id for employee in employees]

leader = employees[ids.index(id)]

employees.pop(ids.index(id))

if leader.subordinates == []:

return leader.importance

else:

im = 0

for id in leader.subordinates:

im += self.getImportance(employees, id)

return im + leader.importance

最新文章

  1. SQL排序问题
  2. node基础04:模块调用
  3. BlacJack游戏
  4. 分享一套精美的现代 UI PSD 工具包【免费下载】
  5. Water --- CSU 1550: Simple String
  6. Java web 学习之旅
  7. 初学hibernate之缓存
  8. http://blogs.msdn.com/b/pranavwagh/archive/2007/03/03/word-2007-file-seems-to-be-deleted-when-you-open-and-save-it-using-dsoframer.aspx
  9. eclispe远程调试tomcat
  10. Python面向对象解析
  11. SSRS报表服务随笔(rdl报表服务)-报表数据:使用第三方控件生成条形码
  12. 『Lucas定理以及拓展Lucas』
  13. vuex的一些学习
  14. bios下能看到硬盘,进入系统看不到的解决方法
  15. 使用jconsole监控JVM内存
  16. git flow常用命令
  17. luogu2296 [NOIp2014]寻找道路 (bfs)
  18. js中如何快速获取数组中的最大值最小值
  19. Vue2+Webpack创建vue项目
  20. 如何解决Nginx php 50x 错误

热门文章

  1. [Android]Android数据的四种存储方式
  2. 解决SQLite异常:library routine called out of sequence
  3. Java知多少(82)标签、按钮和按钮事件简介
  4. Java知多少(100)图像处理基础
  5. 执行start-dfs.sh后,datenode没有启动的解决办法
  6. SPARKR,对RDD操作的介绍
  7. Mysql EF 触发器生成主键id 存储区更新、插入或删除语句影响到了意外的行数(0)。实体在加载后可能被修改或删除。刷新 ObjectStateManager 项 ;System.Data.Entity.Infrastructure.DbUpdateConcurrencyException
  8. AbtestingGateway 复制请求到其他服务上
  9. 删除新版UniAccess Agent 办公室监控软件的方法
  10. mui---取消掉默认加载框