-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfactorial_w_maps.cpp
66 lines (58 loc) · 1.39 KB
/
factorial_w_maps.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
/**
* @file ocado_interview.cpp
* @author Toba Adesanya ([email protected])
* @brief Factorial with map
* Create a way to avoid calculating the factorial for a number that
* been calculated before.
*
* @version 0.1
* @date 2022-09-19
*
* @copyright Copyright (c) 2022
*
*/
#include <iostream>
#include <map>
class Fact
{
std::map<int, int> factMap;
public:
Fact(){}
int factorial(int x)
{
int num = x;
if (num == 0) return 0;
if (num <= 1) return 1;
int fact = 1;
// Check if number has been entered before
if (factMap.find(x) != factMap.end())
{
std::cout << "Sike! You called me before here's your factorial \n";
return factMap.at(x);
}
for (int i = 0; num != 0; i++)
{
fact *= num;
num--;
}
factMap[x] = {fact};
return fact;
}
int fact_recursive(int n)
{
if (n <= 1) return 1;
int fact = 0;
fact = n * fact_recursive(n -1);
return fact;
}
};
int main()
{
Fact myFact;
std::cout << myFact.factorial(6) << "\n";
std::cout << myFact.factorial(10) << "\n";
std::cout << myFact.factorial(6) << "\n";
std::cout << myFact.factorial(10) << "\n";
std::cout << "Recursive factorial: " << myFact.fact_recursive(5) << std::endl;
return 0;
}