-
Notifications
You must be signed in to change notification settings - Fork 0
/
ex_pre_exam_2.cpp
executable file
·73 lines (64 loc) · 1.4 KB
/
ex_pre_exam_2.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
/*
Scrivete una funzione che:
- Acquisisca da tastiera un vettore di interi
- Attraverso una funzione chiamata menoFrequente
scritta da voi restituisca uno dei valori che compare il minor numero di volte nel vettore.
*/
#include <iostream>
#include <math.h>
#include <vector>
#include <stdlib.h>
using namespace std;
void printVector (vector<int> V)
{
int i, len = V.size();
for (i = 0; i<len; i++)
{
cout << V[i] << "|";
}
cout << endl;
}
vector<int> caricaVettore()
{
int lunghezza;
cout << "Inserire lunghezza vettore = ";
cin >> lunghezza;
vector<int> V (lunghezza, 0);
int i;
for (i=0; i<=lunghezza-1; i++)
{
cout << "Inserire numero = ";
cin >> V[i];
}
return V;
}
int menoFrequente(vector<int> v)
{
int i,j;
int valoreMenoFrequente, countValMenoFreq;
int count=0;
int len = v.size();
for (i = 0; i<len; i++)
{
count=0;
for (j = 0; j<len; j++)
{
if (v[i]==v[j])
count++;
}
if (count < countValMenoFreq)
{
valoreMenoFrequente = v[i];
countValMenoFreq = count;
}
}
return valoreMenoFrequente;
}
int main()
{
vector<int> vettore = caricaVettore();
printVector(vettore);
int valore = menoFrequente(vettore);
cout << "VALORE MENO PRESENTE: " << valore << endl;
system("pause");
}