Commit d5dff368 authored by captainwong's avatar captainwong

update

parent 6cd157fb
...@@ -8,11 +8,11 @@ ...@@ -8,11 +8,11 @@
namespace jlib { namespace jlib {
/** /**
* @brief check if container c contains t * @brief check if Container contains ElementType t
* @note C must be a container of type T * @note C must be a container of type T
*/ */
template <class C, class T> template <class Container, class ElementType>
inline bool is_contain(const typename C& c, const typename T& t) { bool is_contain(const typename Container& c, const typename ElementType& t) {
for (const auto& i : c) { for (const auto& i : c) {
if (i == t) { return true; } if (i == t) { return true; }
} }
...@@ -23,9 +23,9 @@ inline bool is_contain(const typename C& c, const typename T& t) { ...@@ -23,9 +23,9 @@ inline bool is_contain(const typename C& c, const typename T& t) {
* @brief Sub 是 All 的子集,返回 All 内 Sub 的补集 * @brief Sub 是 All 的子集,返回 All 内 Sub 的补集
* @note All 和 Sub 必须为同样类型的容器(不支持initializer-list) * @note All 和 Sub 必须为同样类型的容器(不支持initializer-list)
*/ */
template <class C> template <class Container>
inline typename C get_other(const typename C & All, const typename C& Sub) { typename Container get_other(const typename Container& All, const typename Container& Sub) {
C res, tmp; Container res, tmp;
std::copy(Sub.begin(), Sub.end(), std::back_inserter(tmp)); std::copy(Sub.begin(), Sub.end(), std::back_inserter(tmp));
for (const auto& i : All) { for (const auto& i : All) {
bool in_Sub = false; bool in_Sub = false;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment