-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtransform_filter_copy.cpp
101 lines (82 loc) · 3.08 KB
/
transform_filter_copy.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
#include "pch.h"
#include "DbItemDatabase.h"
namespace WhereThereIsAlLoop
{
std::vector<ItemMetadata> GetMetadataFromMatches(std::vector<MatchResults> const & matches, DbItemDatabase const & index)
{
std::vector<ItemMetadata> topMatchesMetadata;
topMatchesMetadata.reserve(matches.size());
// original
{
for (auto const & match : matches)
{
if (auto metadata = index.TryGetItemMetadata(match.Id))
{
topMatchesMetadata.push_back(metadata.value());
}
}
}
// first attempt
{ // use transform
std::ranges::transform(
matches,
std::back_inserter(topMatchesMetadata),
[&index](auto const & match)
{ return index.TryGetItemMetadata(match.Id).value_or(0); }); // but this is not the same as the original
// could do a remove_if here, but that's not the same as the original either
}
// second attempt
{ // use transform and filter and copy
auto metadata =
matches
| std::views::transform([&index](auto const & match) { return index.TryGetItemMetadata(match.Id); })
| std::views::filter([](auto const & metadata) { return metadata.has_value(); })
| std::views::transform([](auto const & metadata) { return metadata.value(); });
std::ranges::copy(metadata, std::back_inserter(topMatchesMetadata));
// What is Big O complexity of this code?
}
// third attempt ... partition and remove
{
// auto met
}
// compare
{
// correct and safe?
// readable?
// efficient?
// I personally like the original code better
}
return topMatchesMetadata;
}
auto GetRegionIDs(std::span<MatchResults> matches, DbItemDatabase const & index)
{
// original intended
{
std::vector<RegionId> regionId(matches.size());
for (auto const & match : matches)
{
regionId.push_back(ToRegionId(match.Id));
}
}
// refactored
{
std::vector<RegionId> regionIds(matches.size());
std::ranges::transform(
matches,
std::back_inserter(regionIds),
[&index](auto const & match) { return ToRegionId(match.Id); });
return regionIds;
}
// refactored
{
// return matches | std::views::transform([](auto const & match) { return ToRegionId(match.Id); });
}
// BUT...one of these is WRONG!
{
// the caller is going to get a dangling reference
// because the return value is a temporary
// fix by returning a vector
// return std::vector<RegionId>(matches | std::views::transform([](auto const & match) { return ToRegionId(match.Id); }));
}
}
} // namespace WhereThereIsAlLoop