-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcandidati.cpp
139 lines (123 loc) · 2.24 KB
/
candidati.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
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
#include <iostream>
#include "candidati.h"
Candidati::Candidati()
:max(geometria::MAX)
{
m_data = new bool[max];
tutti_possibili();
}
Candidati::Candidati(int n)
:max(geometria::MAX)
{
m_data = new bool[max];
possibile_n(n);
}
Candidati::Candidati(const Candidati &old)
:max(old.max)
{
m_data = new bool[max];
for (int i=0;i<max;++i)
m_data[i] = old.m_data[i];
}
Candidati::~Candidati()
{
delete[] m_data;
}
bool Candidati::determinato(int &n) const
{
int veri = 0;
for (int i=0;i<max;++i)
{
if (m_data[i])
{
++veri;
if (veri>1) {n = 0; return false;}
n = i+1;
}
}
if (veri==1) return true;
else
{
n = -1;
return false;
}
}
bool Candidati::determinato() const
{
int veri = 0;
for (int i=0;i<max;++i)
{
if (m_data[i]) ++veri;
// if (veri>1) return false;
}
if (veri==1) return true;
return false;
// return true;
}
int Candidati::quanti() const
{
int veri = 0;
for (int i=0;i<max;++i)
if (m_data[i]) veri++;
return veri;
}
void Candidati::possibile(int n,bool in)
{
m_data[n-1] = in;
}
bool Candidati::togli(int n)
{
if (possibile(n))
{
possibile(n,false);
return true;
}
else return false;
}
void Candidati::possibile_n(int n)
{
for (int i=1;i<=max;possibile(i++,false));
possibile(n,true);
}
void Candidati::tutti_possibili()
{
for (int i=1;i<=max;++i)
possibile(i,true);
}
bool Candidati::coppia(int &a, int &b) const
{
int *temp = new int[max];
int veri = 0;
for (int i=0;i<max;++i)
if (m_data[i])
temp[veri++] = i+1;
a = temp[0];
b = temp[1];
delete[] temp;
if (veri==2) return true;
else return false;
}
int Candidati::quali(int vet[]) const
{
int veri = 0;
for (int i=0;i<max;++i)
if (m_data[i])
vet[veri++] = i+1;
for (int i=veri;i<max;++i)
vet[i] = 0;
return veri;
}
bool Candidati::operator==(const Candidati& altro) const
{
bool temp = true;
for (int i=0;i<max;++i)
if (m_data[i] != altro.m_data[i]) temp = false;
return temp;
}
Candidati& Candidati::operator=(const Candidati& altro)
{
if (this == &altro) return *this;
for (int i=0;i<max;++i)
m_data[i] = altro.m_data[i];
return *this;
}