-
Notifications
You must be signed in to change notification settings - Fork 14
/
Sales_data.cpp
108 lines (96 loc) · 2.62 KB
/
Sales_data.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
102
103
104
105
106
107
108
#include <iostream>
#include <string>
#include <unordered_set>
#include <tuple>
#include <utility>
#include <algorithm>
#include <numeric>
#include <vector>
#include "Sales_data.h"
Sales_data & Sales_data::operator+=(const Sales_data & sa)
{
if(isbn() != sa.isbn())
throw isbn_mismatch("wrong isbns", isbn(), sa.isbn());
amount += sa.amount;
totalPrice += sa.totalPrice;
return *this;
}
Sales_data & Sales_data::operator=(const std::string & s)
{
ISBN = s;
totalPrice = 0.0;
amount = 0;
return *this;
}
inline double Sales_data::avg_price() const
{
if(amount)
return totalPrice / amount;
return 0;
}
Sales_data operator+(const Sales_data & sa, const Sales_data & sb)
{
Sales_data sum = sa;
sum += sb;
return sum;
}
std::istream & operator>>(std::istream & is, Sales_data & sa)
{
double price = 0;
is >> sa.ISBN >> sa.amount >> price;
if(is)
sa.totalPrice = price * sa.amount;
else
sa = Sales_data();
return is;
}
std::ostream & operator<<(std::ostream & os, const Sales_data & sa)
{
os << sa.isbn() << " " << sa.amount << " " << sa.totalPrice << " " << sa.avg_price();
return os;
}
bool operator==(const Sales_data &lhs, const Sales_data &rhs)
{
return lhs.isbn() == rhs.isbn() && lhs.totalPrice == rhs.totalPrice && lhs.amount == rhs.amount;
}
bool operator!=(const Sales_data &lhs, const Sales_data &rhs)
{
return !(lhs == rhs);
}
namespace std
{
size_t hash<Sales_data>::operator()(const Sales_data & s) const
{
return hash<string>()(s.ISBN) ^ hash<double>()(s.totalPrice) ^ hash<int>()(s.amount);
}
}
bool compareIsbn(const Sales_data & lhs, const Sales_data & rhs)
{
return lhs.isbn() < rhs.isbn();
}
std::vector<matches> findBook(const std::vector<std::vector<Sales_data>> &files, const std::string & book)
{
std::vector<matches> ret;
for(std::vector<std::vector<Sales_data>>::const_iterator it = files.cbegin(); it != files.cend(); ++it)
{
std::pair<std::vector<Sales_data>::const_iterator, std::vector<Sales_data>::const_iterator> found = std::equal_range(it->cbegin(), it->cend(), book, compareIsbn);
if(found.first != found.second)
ret.push_back(std::make_tuple(it - files.cbegin(), found.first, found.second));
}
return ret;
}
void reportResults(std::istream & in, std::ostream & os, const std::vector<std::vector<Sales_data>> &files)
{
std::string s;
while(in >> s)
{
std::vector<matches> trans = findBook(files, s);
if(trans.empty())
{
std::cout << s << " not found in any stores" << std::endl;
continue;
}
for(const matches & store : trans)
os << "store " << std::get<0>(store) << " sales: " << std::accumulate(std::get<1>(store), std::get<2>(store), Sales_data(s)) << std::endl;
}
}