-
Notifications
You must be signed in to change notification settings - Fork 0
/
ejercicios.h
25 lines (21 loc) · 1.05 KB
/
ejercicios.h
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
#ifndef ETPH_EJERCICIOS_H
#define ETPH_EJERCICIOS_H
#include <iostream>
#include <vector>
#include <math.h>
#include <tuple>
#include "definiciones.h"
using namespace std;
bool esEncuestaValida ( eph_h th, eph_i ti );
vector < int > histHabitacional ( eph_h th, eph_i ti, int region );
vector < pair < int, float > > laCasaEstaQuedandoChica ( eph_h th, eph_i ti );
bool creceElTeleworkingEnCiudadesGrandes ( eph_h t1h, eph_i t1i, eph_h t2h, eph_i t2i );
float proporcionTeleworking(eph_h encuestaHogar, eph_i encuestaIndividuo);
int costoSubsidioMejora( eph_h th, eph_i ti, int monto );
join_hi generarJoin( eph_h th, eph_i ti );
void ordenarRegionYCODUSU ( eph_h & th, eph_i & ti );
vector < hogar > muestraHomogenea( eph_h & th, eph_i & ti );
void corregirRegion( eph_h & th, eph_i ti );
vector < int > histogramaDeAnillosConcentricos( eph_h th, eph_i ti, pair < int, int > centro, vector < int > distancias );
pair < eph_h, eph_i > quitarIndividuos(eph_i & ti, eph_h & th, vector < pair < int, dato > > busqueda );
#endif //ETPH_EJERCICIOS_H