-
Notifications
You must be signed in to change notification settings - Fork 1
/
Punto.java
137 lines (112 loc) · 4.17 KB
/
Punto.java
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
import java.io.Serializable;
import java.lang.Math;
import java.util.Arrays;
public class Punto implements Serializable
{
/**
*
*/
private static final long serialVersionUID = 617421321768364401L;
public double[] componente;
public String grupo;
public boolean hasSolution;
public double distancia(Punto p1) throws Exception{
Punto p2 = this;
if(p1.componente.length == 0 || p2.componente.length == 0) throw new Exception("Esta intentando medir distancia de un punto que no tiene componentes");
if(p1.componente.length != p2.componente.length) throw new Exception("Esta intentando medir distancia de puntos con distintas dimensiones");
if(p1 == p2 || p1.equals(p2)) return 0;
double suma = 0;
for (int i = 0; i < p1.componente.length; i++) {
suma += Math.pow(p2.componente[i] - p1.componente[i] , 2);
}
double resultado = Math.sqrt(suma);
return resultado;
}
public Punto suma(Punto p1) throws Exception{
Punto p2 = this;
if(p1.componente.length == 0 || p2.componente.length == 0) throw new Exception("Esta intentando sumar un punto que no tiene componentes");
if(p1.componente.length != p2.componente.length) throw new Exception("Esta intentando sumar puntos con distintas dimensiones");
double[] suma = new double[p1.componente.length];
for (int i = 0; i < p1.componente.length; i++) {
suma[i] = p1.componente[i] + p2.componente[i];
}
//EL PUNTO RESULTANTE NO TIENE SOLUCION ASOCIADA
return new Punto(suma);
}
public Punto dividir(double divisor) throws Exception{
Punto p1 = this;
if(p1.componente.length == 0) throw new Exception("Esta intentando dividir un punto que no tiene componentes");
if(divisor == 0) throw new Exception("Esta intentando dividir un punto por cero");
for (int i = 0; i < p1.componente.length; i++) {
p1.componente[i] = p1.componente[i]/divisor;
}
return p1;
}
public Punto zeros(){
for (int i = 0; i < this.componente.length; i++) {
this.componente[i] = 0;
}
return this;
}
public Punto(double[] componentes) throws Exception{
if(componentes.length > 0) this.componente = componentes;
else throw new Exception("La dimension esta incorrecta");
this.hasSolution = false;
}
public Punto(int dimension) throws Exception{
if(dimension > 0) this.componente = new double[dimension];
else throw new Exception("La dimension esta incorrecta");
this.hasSolution = false;
}
public Punto(int dimension, String grupo, boolean hasSolution) throws Exception{//PODRIA ESTAR UN PUNTO SIN COMPONENTES "CORRECTAS"
if(dimension > 0) this.componente = new double[dimension];
else throw new Exception("La dimension esta incorrecta");
this.grupo = grupo;
this.hasSolution = hasSolution;
}
public String toString(){
String r = "";
if(this.componente.length > 0){
r += this.componente.length + ":";
for (int i = 0; i < this.componente.length; i++) {
if(i == this.componente.length - 1) r += this.componente[i];
else r += this.componente[i] + ",";
}
}
return r;
}
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
result = prime * result + ((componente == null) ? 0 : componente.hashCode());
result = prime * result + ((grupo == null) ? 0 : grupo.hashCode());
result = prime * result + (hasSolution ? 1231 : 1237);
return result;
}
@Override
public boolean equals(Object obj) {
if (this == obj) return true;
if (obj == null || this.getClass() != obj.getClass()) return false;
Punto other = (Punto) obj;
return
Arrays.equals(this.componente, other.componente) && this.hasSolution == other.hasSolution &&
(this.grupo == other.grupo || (this.grupo != null && this.grupo.equals(other.grupo)));
}
public Punto copy(Punto p) throws Exception{
Punto copia = new Punto(p.componente.length, p.grupo, p.hasSolution);
for (int i = 0; i < p.componente.length; i++) {
copia.componente[i] = p.componente[i];
}
return copia;
}
public Punto copy() throws Exception{
Punto copia = null;
if(this.componente == null) return copia;
copia = new Punto(this.componente.length, this.grupo, this.hasSolution);
for (int i = 0; i < this.componente.length; i++) {
copia.componente[i] = this.componente[i];
}
return copia;
}
}