Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
J
jlib
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
captainwong
jlib
Commits
3c934946
Commit
3c934946
authored
Aug 25, 2020
by
captainwong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix std_util
parent
d5dff368
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
419 additions
and
5 deletions
+419
-5
std_util.h
jlib/util/std_util.h
+4
-4
test.sln
test/test.sln
+203
-0
test_stdutil.cpp
test/test_stdutil/test_stdutil.cpp
+1
-1
test_stdutil.vcxproj
test/test_stdutil/test_stdutil.vcxproj
+1
-0
std_util.h
test/test_stdutil_linux/std_util.h
+66
-0
test_stdutil.cpp
test/test_stdutil_linux/test_stdutil.cpp
+37
-0
test_stdutil_linux.vcxproj
test/test_stdutil_linux/test_stdutil_linux.vcxproj
+98
-0
test_stdutil_linux.vcxproj.user
test/test_stdutil_linux/test_stdutil_linux.vcxproj.user
+9
-0
No files found.
jlib/util/std_util.h
View file @
3c934946
...
...
@@ -12,7 +12,7 @@ namespace jlib {
* @note C must be a container of type T
*/
template
<
class
Container
,
class
ElementType
>
bool
is_contain
(
const
typename
Container
&
c
,
const
typename
ElementType
&
t
)
{
inline
bool
is_contain
(
const
Container
&
c
,
const
ElementType
&
t
)
{
for
(
const
auto
&
i
:
c
)
{
if
(
i
==
t
)
{
return
true
;
}
}
...
...
@@ -24,7 +24,7 @@ bool is_contain(const typename Container& c, const typename ElementType& t) {
* @note All 和 Sub 必须为同样类型的容器(不支持initializer-list)
*/
template
<
class
Container
>
typename
Container
get_other
(
const
typename
Container
&
All
,
const
typename
Container
&
Sub
)
{
Container
get_other
(
const
Container
&
All
,
const
Container
&
Sub
)
{
Container
res
,
tmp
;
std
::
copy
(
Sub
.
begin
(),
Sub
.
end
(),
std
::
back_inserter
(
tmp
));
for
(
const
auto
&
i
:
All
)
{
...
...
@@ -47,7 +47,7 @@ typename Container get_other(const typename Container& All, const typename Conta
* @brief t 是 v 的子集,返回 v 内 t 的补集
*/
template
<
class
V
>
std
::
vector
<
std
::
wstring
>
get_other
(
const
typename
V
&
v
,
const
std
::
wstring
&
t
)
{
std
::
vector
<
std
::
wstring
>
get_other
(
const
V
&
v
,
const
std
::
wstring
&
t
)
{
std
::
vector
<
std
::
wstring
>
ret
=
{};
for
(
const
auto
&
i
:
v
)
{
if
(
i
!=
t
)
{
ret
.
push_back
(
i
);
}
}
return
ret
;
...
...
@@ -57,7 +57,7 @@ std::vector<std::wstring> get_other(const typename V& v, const std::wstring& t)
* @brief t 是 v 的子集,返回 v 内 t 的补集
*/
template
<
class
V
>
std
::
vector
<
std
::
string
>
get_other
(
const
typename
V
&
v
,
const
std
::
string
&
t
)
{
std
::
vector
<
std
::
string
>
get_other
(
const
V
&
v
,
const
std
::
string
&
t
)
{
std
::
vector
<
std
::
string
>
ret
=
{};
for
(
const
auto
&
i
:
v
)
{
if
(
i
!=
t
)
{
ret
.
push_back
(
i
);
}
}
return
ret
;
...
...
test/test.sln
View file @
3c934946
This diff is collapsed.
Click to expand it.
test/test_stdutil/test_stdutil.cpp
View file @
3c934946
#include "
../../jlib/util/
std_util.h"
#include "std_util.h"
#include <assert.h>
int
main
()
...
...
test/test_stdutil/test_stdutil.vcxproj
View file @
3c934946
...
...
@@ -76,6 +76,7 @@
<Optimization>
Disabled
</Optimization>
<SDLCheck>
true
</SDLCheck>
<ConformanceMode>
true
</ConformanceMode>
<AdditionalIncludeDirectories>
$(DEVLIBS)\jlib;%(AdditionalIncludeDirectories)
</AdditionalIncludeDirectories>
</ClCompile>
<Link>
<SubSystem>
Console
</SubSystem>
...
...
test/test_stdutil_linux/std_util.h
0 → 100644
View file @
3c934946
#
pragma
once
#include <vector>
#include <string>
#include <algorithm>
#include <iterator>
namespace
jlib
{
/**
* @brief check if Container contains ElementType t
* @note C must be a container of type T
*/
template
<
class
Container
,
class
ElementType
>
inline
bool
is_contain
(
const
Container
&
c
,
const
ElementType
&
t
)
{
for
(
const
auto
&
i
:
c
)
{
if
(
i
==
t
)
{
return
true
;
}
}
return
false
;
}
/**
* @brief Sub 是 All 的子集,返回 All 内 Sub 的补集
* @note All 和 Sub 必须为同样类型的容器(不支持initializer-list)
*/
template
<
class
Container
>
Container
get_other
(
const
Container
&
All
,
const
Container
&
Sub
)
{
Container
res
,
tmp
;
std
::
copy
(
Sub
.
begin
(),
Sub
.
end
(),
std
::
back_inserter
(
tmp
));
for
(
const
auto
&
i
:
All
)
{
bool
in_Sub
=
false
;
for
(
auto
iter
=
tmp
.
begin
();
iter
!=
tmp
.
end
();
iter
++
)
{
if
(
*
iter
==
i
)
{
tmp
.
erase
(
iter
);
in_Sub
=
true
;
break
;
}
}
if
(
!
in_Sub
)
{
res
.
push_back
(
i
);
}
}
return
res
;
}
/**
* @brief t 是 v 的子集,返回 v 内 t 的补集
*/
template
<
class
V
>
std
::
vector
<
std
::
wstring
>
get_other
(
const
V
&
v
,
const
std
::
wstring
&
t
)
{
std
::
vector
<
std
::
wstring
>
ret
=
{};
for
(
const
auto
&
i
:
v
)
{
if
(
i
!=
t
)
{
ret
.
push_back
(
i
);
}
}
return
ret
;
}
/**
* @brief t 是 v 的子集,返回 v 内 t 的补集
*/
template
<
class
V
>
std
::
vector
<
std
::
string
>
get_other
(
const
V
&
v
,
const
std
::
string
&
t
)
{
std
::
vector
<
std
::
string
>
ret
=
{};
for
(
const
auto
&
i
:
v
)
{
if
(
i
!=
t
)
{
ret
.
push_back
(
i
);
}
}
return
ret
;
}
}
test/test_stdutil_linux/test_stdutil.cpp
0 → 100644
View file @
3c934946
#include "std_util.h"
#include <assert.h>
int
main
()
{
// is_contain
{
std
::
string
s
=
"12345"
;
for
(
auto
c
:
s
)
{
assert
(
jlib
::
is_contain
(
s
,
c
));
}
}
// get_other
{
std
::
vector
<
int
>
All
{
1
,
2
,
3
,
4
,
5
};
std
::
vector
<
int
>
Sub
{
1
,
2
,
3
};
auto
other
=
jlib
::
get_other
(
All
,
Sub
);
assert
(
other
==
std
::
vector
<
int
>
({
4
,
5
}));
}
// get_other
{
std
::
vector
<
std
::
wstring
>
all
{
L"123"
,
L"abc"
,
L"def"
,
L"ghi"
};
std
::
wstring
sub
(
L"123"
);
auto
other
=
jlib
::
get_other
(
all
,
sub
);
assert
(
other
==
std
::
vector
<
std
::
wstring
>
({
L"abc"
,
L"def"
,
L"ghi"
}));
}
// get_other
{
std
::
vector
<
std
::
string
>
all
{
"123"
,
"abc"
,
"def"
,
"ghi"
};
std
::
string
sub
(
"123"
);
auto
other
=
jlib
::
get_other
(
all
,
sub
);
assert
(
other
==
std
::
vector
<
std
::
string
>
({
"abc"
,
"def"
,
"ghi"
}));
}
}
test/test_stdutil_linux/test_stdutil_linux.vcxproj
0 → 100644
View file @
3c934946
<?xml version="1.0" encoding="utf-8"?>
<Project
DefaultTargets=
"Build"
ToolsVersion=
"15.0"
xmlns=
"http://schemas.microsoft.com/developer/msbuild/2003"
>
<ItemGroup
Label=
"ProjectConfigurations"
>
<ProjectConfiguration
Include=
"Debug|ARM"
>
<Configuration>
Debug
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Release|ARM"
>
<Configuration>
Release
</Configuration>
<Platform>
ARM
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Debug|ARM64"
>
<Configuration>
Debug
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Release|ARM64"
>
<Configuration>
Release
</Configuration>
<Platform>
ARM64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Debug|x86"
>
<Configuration>
Debug
</Configuration>
<Platform>
x86
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Release|x86"
>
<Configuration>
Release
</Configuration>
<Platform>
x86
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Debug|x64"
>
<Configuration>
Debug
</Configuration>
<Platform>
x64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Release|x64"
>
<Configuration>
Release
</Configuration>
<Platform>
x64
</Platform>
</ProjectConfiguration>
</ItemGroup>
<ItemGroup>
<ClInclude
Include=
"std_util.h"
/>
</ItemGroup>
<ItemGroup>
<ClCompile
Include=
"test_stdutil.cpp"
/>
</ItemGroup>
<PropertyGroup
Label=
"Globals"
>
<ProjectGuid>
{c5d81d57-c53b-4571-9a42-9620c5be7919}
</ProjectGuid>
<Keyword>
Linux
</Keyword>
<RootNamespace>
test_stdutil_linux
</RootNamespace>
<MinimumVisualStudioVersion>
15.0
</MinimumVisualStudioVersion>
<ApplicationType>
Linux
</ApplicationType>
<ApplicationTypeRevision>
1.0
</ApplicationTypeRevision>
<TargetLinuxPlatform>
Generic
</TargetLinuxPlatform>
<LinuxProjectType>
{2238F9CD-F817-4ECC-BD14-2524D2669B35}
</LinuxProjectType>
</PropertyGroup>
<Import
Project=
"$(VCTargetsPath)\Microsoft.Cpp.Default.props"
/>
<PropertyGroup
Condition=
"'$(Configuration)|$(Platform)'=='Debug|ARM'"
Label=
"Configuration"
>
<UseDebugLibraries>
true
</UseDebugLibraries>
</PropertyGroup>
<PropertyGroup
Condition=
"'$(Configuration)|$(Platform)'=='Release|ARM'"
Label=
"Configuration"
>
<UseDebugLibraries>
false
</UseDebugLibraries>
</PropertyGroup>
<PropertyGroup
Condition=
"'$(Configuration)|$(Platform)'=='Debug|x86'"
Label=
"Configuration"
>
<UseDebugLibraries>
true
</UseDebugLibraries>
<RemoteRootDir>
~/vsprojects
</RemoteRootDir>
</PropertyGroup>
<PropertyGroup
Condition=
"'$(Configuration)|$(Platform)'=='Release|x86'"
Label=
"Configuration"
>
<UseDebugLibraries>
false
</UseDebugLibraries>
</PropertyGroup>
<PropertyGroup
Condition=
"'$(Configuration)|$(Platform)'=='Debug|x64'"
Label=
"Configuration"
>
<UseDebugLibraries>
true
</UseDebugLibraries>
<RemoteRootDir>
~/vsprojects
</RemoteRootDir>
</PropertyGroup>
<PropertyGroup
Condition=
"'$(Configuration)|$(Platform)'=='Release|x64'"
Label=
"Configuration"
>
<UseDebugLibraries>
false
</UseDebugLibraries>
</PropertyGroup>
<PropertyGroup
Condition=
"'$(Configuration)|$(Platform)'=='Release|ARM64'"
Label=
"Configuration"
>
<UseDebugLibraries>
false
</UseDebugLibraries>
</PropertyGroup>
<PropertyGroup
Condition=
"'$(Configuration)|$(Platform)'=='Debug|ARM64'"
Label=
"Configuration"
>
<UseDebugLibraries>
true
</UseDebugLibraries>
</PropertyGroup>
<Import
Project=
"$(VCTargetsPath)\Microsoft.Cpp.props"
/>
<ImportGroup
Label=
"ExtensionSettings"
/>
<ImportGroup
Label=
"Shared"
/>
<ImportGroup
Label=
"PropertySheets"
/>
<PropertyGroup
Label=
"UserMacros"
/>
<ItemDefinitionGroup
Condition=
"'$(Configuration)|$(Platform)'=='Debug|x86'"
>
<ClCompile>
<AdditionalIncludeDirectories>
/root/jlib;%(AdditionalIncludeDirectories)
</AdditionalIncludeDirectories>
</ClCompile>
</ItemDefinitionGroup>
<ItemDefinitionGroup
Condition=
"'$(Configuration)|$(Platform)'=='Debug|x64'"
>
<ClCompile>
<AdditionalIncludeDirectories>
%(AdditionalIncludeDirectories)
</AdditionalIncludeDirectories>
<CppLanguageStandard>
c++17
</CppLanguageStandard>
</ClCompile>
</ItemDefinitionGroup>
<Import
Project=
"$(VCTargetsPath)\Microsoft.Cpp.targets"
/>
<ImportGroup
Label=
"ExtensionTargets"
/>
</Project>
\ No newline at end of file
test/test_stdutil_linux/test_stdutil_linux.vcxproj.user
0 → 100644
View file @
3c934946
<?xml version="1.0" encoding="utf-8"?>
<Project
ToolsVersion=
"Current"
xmlns=
"http://schemas.microsoft.com/developer/msbuild/2003"
>
<PropertyGroup
Condition=
"'$(Configuration)|$(Platform)'=='Debug|x86'"
>
<RemoteTarget>
-2055866198;192.168.1.166 (username=, port=22, authentication=Password)
</RemoteTarget>
</PropertyGroup>
<PropertyGroup
Condition=
"'$(Configuration)|$(Platform)'=='Debug|x64'"
>
<RemoteTarget>
-2055866198;192.168.1.166 (username=, port=22, authentication=Password)
</RemoteTarget>
</PropertyGroup>
</Project>
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment