-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfunct.cpp
65 lines (65 loc) · 2.27 KB
/
funct.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
#include "funct-call.h"
#include <iostream>
#include <vector>
#include <map>
using namespace std;
//=============================================================================================
bool validarFecha(int anio, int mes, int dia) {
if(anio == 0){
cout << "Year value is invalid: " << anio << endl;
return false;
}
if(mes > 12) {
cout << "Month value is invalid: " << mes << endl;
return false;
}
if(dia == 0 && dia > 30) {
cout << "Day value is invalid: " << dia << endl;
return false;
}
return true;
}
//=============================================================================================
string formatearFecha(int anio, int mes, int dia) {
return (anio < 10 ? "000" : (anio < 100 ? "00" : (anio < 1000 ? "0" : ""))) + to_string(anio) + "-" + (mes < 10 ? "0" : "") + to_string(mes) + "-" + (dia < 10 ? "0" : "") + to_string(dia);
}
//=============================================================================================
int contarGuiones(const string& str) {
int count = 0;
for (char c : str) {
if (c == '-') {
count++;
}
}
return count;
}
//=============================================================================================
void insertarEventoEnOrden(vector<string>& eventos, const string& evento) {
auto it = eventos.begin();
while (it != eventos.end() && *it < evento) {
++it;
}
if(it == eventos.end() || *it != evento) {
eventos.insert(it,evento);
}
}
//=============================================================================================
bool eliminarEvento(vector<string>& eventos, const string& evento) {
for (auto it = eventos.begin(); it != eventos.end(); ++it) {
if (*it == evento) {
eventos.erase(it);
return true;
}
}
return false;
}
//=============================================================================================
void imprimirFechas(const map<string, vector<string>>& fechas) {
for (const auto& par : fechas) {
cout << "Fecha: " << par.first << endl;
for (const auto& evento : par.second) {
cout << " - " << evento << endl;
}
cout << "-----------------------------------" << endl;
}
}