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
| package org.data.structurs.graph;
import java.util.Arrays; import java.util.Vector;
public class Graph {
private int n; private int m; private boolean directed; private Vector<Integer>[] adjacency;
public Graph(int n, boolean directed) { assert n >= 0; this.n = n; this.m = 0; this.directed = directed; this.adjacency = (Vector<Integer>[]) new Vector[n]; for (int i = 0; i < n; i++) this.adjacency[i] = new Vector<Integer>(); }
public int V() { return n; }
public int E() { return m; }
public void addEdge(int v, int w) { assert v >= 0 && v < n; assert w >= 0 && w < n; this.adjacency[v].add(w); if (v != w && !directed) this.adjacency[w].add(v); m++; }
boolean hasEdge(int v, int w) { assert v >= 0 && v < n; assert w >= 0 && w < n; for (int i = 0; i < this.adjacency[v].size(); i++) if (this.adjacency[v].elementAt(i) == w) return true; return false; }
public Iterable<Integer> adj(int v) { assert v >= 0 && v < n; return this.adjacency[v]; }
@Override public String toString() { return "Graph{" + "n=" + n + ", m=" + m + ", directed=" + directed + ", adjacency=" + Arrays.toString(adjacency) + '}'; }
public static void main(String[] args) { Graph graph = new Graph(5, true); System.out.println(graph); graph.addEdge(0, 1); graph.addEdge(0, 2); graph.addEdge(0, 3); graph.addEdge(1, 2); graph.addEdge(2, 4);
System.out.println(graph); } }
|