由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Programming版 - vector reference作为模板参数有什么问题?
相关主题
what's the difference between tuple and pair in c++ code ?谁能说说Perl, Python, Tcl各自的优缺点?主要应用场合?
C++ key/value 排序GNUPLOT怎么样画大小不同的点
请教一个算法花了一个小时学习了python
vector的析构问题这里的人用BOOST都是用来做什么?
Remove elements from multiple vectors in C++3sum problem
能帮我看看Ruby的这道题吗?[合集] 我也花了一小时读了一下python
一个关于methodology的问题C++里面如何最方便的表示这个数组的数组?
曲线光滑,什么算法最好?Compile issues
相关话题的讨论汇总
话题: int话题: std话题: parents话题: vector话题: pair
进入Programming版参与讨论
1 (共1页)
e********2
发帖数: 495
1
报错
required from 'std::pair<_T1, _T2>::pair(std::piecewise_construct_t, std::
tuple<_Args1 ...>, std::tuple<_Args2 ...>) [with _Args1 = {const int&}; _
Args2 = {}; _T1 = const int; _T2 = std::pair&>]'
class Employee {
public:
int id;
int importance;
std::vector subordinates;
};
class Solution_690 {
public:
int aux(std::unordered_map&>>&
parents, int ind) {
int res = parents[ind].first;
for (auto& t : parents[ind].second) {
res += aux(parents, t);
}
return res;
}
int getImportance(std::vector employees, int id) {
std::unordered_map&>> parents;
for (auto& p : employees) {
parents[p->id] = { p->importance, p->subordinates }; //<---
Error here
}
return aux(parents, id);
}
};
1 (共1页)
进入Programming版参与讨论
相关主题
Compile issuesRemove elements from multiple vectors in C++
求助一个std::map的怪问题能帮我看看Ruby的这道题吗?
几个C++的问题一个关于methodology的问题
C++ Q74: How to return a combination of a class A object, a (转载)曲线光滑,什么算法最好?
what's the difference between tuple and pair in c++ code ?谁能说说Perl, Python, Tcl各自的优缺点?主要应用场合?
C++ key/value 排序GNUPLOT怎么样画大小不同的点
请教一个算法花了一个小时学习了python
vector的析构问题这里的人用BOOST都是用来做什么?
相关话题的讨论汇总
话题: int话题: std话题: parents话题: vector话题: pair