leetcode690】的更多相关文章

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. Th…
class Solution { public: int getImportance(vector<Employee*> employees, int id) { ; map<int, Employee*> MAP; for (auto em : employees) { MAP.insert(make_pair(em->id, em)); } map<int, Employee*>::iterator iter; iter = MAP.find(id); que…
给定一个保存员工信息的数据结构,它包含了员工唯一的id,重要度 和 直系下属的id. 比如,员工1是员工2的领导,员工2是员工3的领导.他们相应的重要度为15, 10, 5.那么员工1的数据结构是[1, 15, [2]],员工2的数据结构是[2, 10, [3]],员工3的数据结构是[3, 5, []].注意虽然员工3也是员工1的一个下属,但是由于并不是直系下属,因此没有体现在员工1的数据结构中. 现在输入一个公司的所有员工信息,以及单个员工id,返回这个员工和他所有下属的重要度之和. 示例 1…
---恢复内容开始--- 2018.3.16目前已刷27题,打卡记录有意思的题目. leetcode78 subsets 思路1:DFS遍历子集,每遇到一个数就把该数加上原来的子集变成新的子集. class Solution { private: void DFS(int index,vector<int> t,vector<int>& nums,vector<vector<int>> & res){ res.push_back(t); fo…