Created
August 11, 2022 17:02
-
-
Save EmmaG2/a159878b0fd405f4f7c4de693bab3d32 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.challenges.graphs; | |
public class Arista implements Comparable<Arista> { | |
private final Vertice vertice1; | |
private final Vertice vertice2; | |
private int peso; | |
public Arista(Vertice vertice1, Vertice vertice2) { | |
this(vertice1, vertice2, 1); | |
} | |
public Arista(Vertice vertice1, Vertice vertice2, int peso) { | |
if (vertice1.getEtiqueta().compareTo(vertice2.getEtiqueta()) <= 0) { | |
this.vertice1 = vertice1; | |
this.vertice2 = vertice2; | |
} else { | |
this.vertice1 = vertice2; | |
this.vertice2 = vertice1; | |
} | |
this.peso = peso; | |
} | |
public Vertice getVecinoDe(Vertice actual) { | |
if (actual.equals(this.vertice1)) return this.vertice2; | |
if (actual.equals(this.vertice2)) return this.vertice1; | |
return null; | |
} | |
public Vertice getVertice1() { | |
return this.vertice1; | |
} | |
public Vertice getVertice2() { | |
return this.vertice2; | |
} | |
public int getPeso() { | |
return this.peso; | |
} | |
public void setPeso(int peso) { | |
this.peso = peso; | |
} | |
public int compareTo(Arista arista2) { | |
return this.peso - arista2.peso; | |
} | |
public String toString() { | |
return "({" + this.vertice1 + ", " + this.vertice2 + "}, " + this.peso + ")"; | |
} | |
public int hashCode() { | |
return (vertice1.getEtiqueta() + vertice2.getEtiqueta()).hashCode(); | |
} | |
public boolean equals(Arista objeto) { | |
if (objeto == null) return false; | |
return ((Arista) objeto).vertice1.equals(this.vertice1) && ((Arista) objeto).vertice2.equals(this.vertice2); | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.challenges.graphs; | |
import java.util.ArrayList; | |
import java.util.HashMap; | |
import java.util.HashSet; | |
import java.util.Set; | |
public class Grafo { | |
private final HashMap<String, Vertice> vertices; | |
private final HashMap<Integer, Arista> aristas; | |
public Grafo() { | |
this.vertices = new HashMap<String, Vertice>(); | |
this.aristas = new HashMap<Integer, Arista>(); | |
} | |
public Grafo(ArrayList<Vertice> vertices) { | |
this.vertices = new HashMap<String, Vertice>(); | |
this.aristas = new HashMap<Integer, Arista>(); | |
for (Vertice v : vertices) { | |
this.vertices.put(v.getEtiqueta(), v); | |
} | |
} | |
public boolean insertarArista(Vertice v1, Vertice v2) { | |
return insertarArista(v1, v2, 1); | |
} | |
public boolean insertarArista(Vertice v1, Vertice v2, int peso) { | |
if (v1.equals(v2)) //vertices identicos? | |
return false; | |
Arista arista = new Arista(v1, v2, peso); | |
if (aristas.containsKey(arista.hashCode())) //arista ya está en el grafo? | |
return false; | |
else if (v1.contieneUnVecino(arista) || v2.contieneUnVecino(arista)) //arista ya une a v1 o v2? | |
return false; | |
aristas.put(arista.hashCode(), arista); | |
v1.insertarVecino(arista); | |
v2.insertarVecino(arista); | |
return true; | |
} | |
public boolean contieneLaArista(Arista arista) { | |
if (arista.getVertice1() == null || arista.getVertice2() == null) return false; | |
return this.aristas.containsKey(arista.hashCode()); | |
} | |
public Arista eliminarArista(Arista arista) { | |
arista.getVertice1().eliminarVecino(arista); | |
arista.getVertice2().eliminarVecino(arista); | |
return this.aristas.remove(arista.hashCode()); | |
} | |
public boolean contieneElVertice(Vertice vertice) { | |
return (this.vertices.get(vertice.getEtiqueta()) != null); | |
} | |
public Vertice getVertice(String etiqueta) { | |
return this.vertices.get(etiqueta); | |
} | |
public boolean insertarVertice(Vertice vertice, boolean sobreescribeVertice) { | |
Vertice actual = this.vertices.get(vertice.getEtiqueta()); | |
if (actual != null) { | |
if (!sobreescribeVertice) return false; | |
while (actual.getContarVecinos() >= 0) | |
this.eliminarArista(actual.getVecino(0)); | |
} | |
vertices.put(vertice.getEtiqueta(), vertice); | |
return true; | |
} | |
public Vertice eliminarVertice(String etiqueta) { | |
Vertice vertice = vertices.remove(etiqueta); | |
while (vertice.getContarVecinos() >= 0) | |
this.eliminarArista(vertice.getVecino(0)); | |
return vertice; | |
} | |
public Set<String> verticeKeys() { | |
return this.vertices.keySet(); | |
} | |
public Set<Arista> getAristas() { | |
return new HashSet<Arista>(this.aristas.values()); | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.challenges.graphs; | |
import java.util.ArrayList; | |
public class Vertice { | |
private final ArrayList<Arista> vecindad; | |
private final String etiqueta; | |
public Vertice(String etiqueta) { | |
this.etiqueta = etiqueta; | |
this.vecindad = new ArrayList<Arista>(); | |
} | |
public Vertice() { | |
this.etiqueta = ""; | |
this.vecindad = new ArrayList<Arista>(); | |
} | |
public void insertarVecino(Arista arista) { | |
if (!this.vecindad.contains(arista)) this.vecindad.add(arista); | |
} | |
public boolean contieneUnVecino(Arista arista) { | |
return this.vecindad.contains(arista); | |
} | |
public Arista getVecino(int indice) { | |
return this.vecindad.get(indice); | |
} | |
public Arista eliminarVecino(int indice) { | |
return this.vecindad.remove(indice); | |
} | |
public void eliminarVecino(Arista arista) { | |
this.vecindad.remove(arista); | |
} | |
public int getContarVecinos() { | |
return this.vecindad.size(); | |
} | |
public String getEtiqueta() { | |
return this.etiqueta; | |
} | |
public boolean equals(Object vertice2) { | |
if (!(vertice2 instanceof Vertice v)) return false; | |
return this.etiqueta.equals(v.etiqueta); | |
} | |
public String toString() { | |
return "Vertice: " + this.etiqueta; | |
} | |
public int hashCode() { | |
return this.getEtiqueta().hashCode(); | |
} | |
public ArrayList<Arista> getVecinos() { | |
return new ArrayList<Arista>(this.vecindad); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment