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 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247
|
#pragma once
#include <iostream>
using namespace std;
class Ingredients {
public:
int quantity;
//protected:
string type;
string id;
string name;
string foodType;
string expirationDate;
public:
string getFoodType();
int getQuantity();
string getId();
string getName();
string getType();
string getExpirationDate();
Ingredients() {}
Ingredients(string type, string id, string name, int quantity, string foodType, string expirationDate);
};
#include <iostream>
#include "Ingredients.h"
using namespace std;
Ingredients::Ingredients(string type, string id, string name, int quantity, string foodType, string expirationDate) :
type(type),
id(id),
name(name),
quantity(quantity),
foodType(foodType),
expirationDate(expirationDate)
{
}
string Ingredients::getType() {
return type;
}
string Ingredients::getExpirationDate() {
return expirationDate;
}
string Ingredients::getId() {
return id;
}
string Ingredients::getName() {
return name;
}
int Ingredients::getQuantity() {
return quantity;
}
string Ingredients::getFoodType() {
return foodType;
}
#pragma once
#include <iostream>
#include "Ingredients.h"
using namespace std;
class AnimalFoods : public Ingredients {
public:
string animal;
string getAnimal();
AnimalFoods(string type, string id, string name, int quantity, string foodType, string expirationDate, string animal);
};
#include <iostream>
#include "AnimalFoods.h"
using namespace std;
string AnimalFoods::getAnimal() {
return animal;
}
AnimalFoods::AnimalFoods(string type, string id, string name, int quantity, string foodType, string expirationDate, string animal) :
Ingredients( type, id, name, quantity, foodType, expirationDate),
animal(animal)
{
}
#pragma once
#include <iostream>
#include "Ingredients.h"
using namespace std;
class PlantBasedFoods : public Ingredients {
public:
string seasonal;
string isSeasonal();
PlantBasedFoods(string type, string id, string name, int quantity, string foodType, string expirationDate, string seasonal);
};
#include <iostream>
#include "PlantBasedFoods.h"
using namespace std;
string PlantBasedFoods::isSeasonal() {
if (seasonal == "Y") {
return "seasonal";
}
return "not seasonal";
}
PlantBasedFoods::PlantBasedFoods(string type, string id, string name, int quantity, string foodType, string expirationDate, string seasonal) :
Ingredients(type, id, name, quantity, foodType, expirationDate),
seasonal(seasonal)
{
}
#pragma once
#include <iostream>
using namespace std;
class Inventory {
public:
string number;
string getInventoryNum();
};
#include <iostream>
#include <vector>
#include "Inventory.h"
#include "Ingredients.h"
#include "PlantBasedFoods.h"
#include "AnimalFoods.h"
#include "Fruits.h"
#include "Vegetables.h"
#include "Meat.h"
#include "Dairy.h"
#include <iterator>
#include <algorithm>
#include <fstream>
#include <string>
using namespace std;
string Inventory::getInventoryNum() {
return number;
}
//merge function
void merge(vector<Ingredients*>& a, vector<Ingredients*>& tmpArr, int l, int r, int rEnd) {
int lEnd = r - 1;
int tmpPos = l;
int numElements = rEnd - l + 1;
while (l <= lEnd && r <= rEnd)
if (a[l]->quantity <= a[r]->quantity)
tmpArr[tmpPos++] = a[l++];
else
tmpArr[tmpPos++] = a[r++];
while (l <= lEnd)
tmpArr[tmpPos++] = a[l++];
while (r <= rEnd)
tmpArr[tmpPos++] = a[r++];
for (int i = 0; i < numElements; i++, rEnd--)
a[rEnd] = tmpArr[rEnd];
}
//mergesort function
void mergeSort(vector<Ingredients*>& a, vector<Ingredients*>& tmpArr, int l, int r)
{
if (l < r) {
int center = (l + r) / 2;
mergeSort(a, tmpArr, l, center);
mergeSort(a, tmpArr, center + 1, r);
merge(a, tmpArr, l, center + 1, r);
}
}
void mergeSort(vector<Ingredients*>& a)
{
vector<Ingredients*> tmpArr(a.size());
mergeSort(a, tmpArr, 0, a.size() - 1);
}
void PrintVector(vector<Ingredients*> v) {
for (int i = 0; i < v.size(); ++i) {
cout << v[i]->getType() << " - " << v[i]->getId() << " - " << v[i]->getFoodType() << " - " << v[i]->getName()
<< " - " << v[i]->getQuantity() << " - " << v[i]->getExpirationDate() << endl;
}
}
bool readFile(vector<Ingredients> &inventory) {
ifstream inFile("Data.txt");
if (!inFile)
return false; // If the object was unable to open the file
else {
string type, id, name, foodtype, expirationdate;
int quantity;
while (inFile >> quantity) {
inFile.ignore();
getline(inFile, type);
getline(inFile, id);
getline(inFile, name);
getline(inFile, foodtype);
getline(inFile, expirationdate);
Ingredients foo;
foo.getId();
foo.getName();
foo.getFoodType();
foo.getExpirationDate();
foo.getQuantity();
inventory.push_back(foo);
}
inFile.close();
return true;
}
}
int main() {
vector<Ingredients> v;
if (!readFile(v))
return 1;
else {
for (int i = 0; i < v.size(); ++i) {
cout << v[i].getType() << " - " << v[i].getId() << " - " << v[i].getFoodType() << " - " << v[i].getName()
<< " - " << v[i].getQuantity() << " - " << v[i].getExpirationDate() << endl;
}
}
return 0;
}
|