
org.jgrapht.demo.CompleteGraphDemo Maven / Gradle / Ivy
/*
* (C) Copyright 2003-2018, by Tim Shearouse and Contributors.
*
* JGraphT : a free Java graph-theory library
*
* This program and the accompanying materials are dual-licensed under
* either
*
* (a) the terms of the GNU Lesser General Public License version 2.1
* as published by the Free Software Foundation, or (at your option) any
* later version.
*
* or (per the licensee's choosing)
*
* (b) the terms of the Eclipse Public License v1.0 as published by
* the Eclipse Foundation.
*/
package org.jgrapht.demo;
import org.jgrapht.*;
import org.jgrapht.generate.*;
import org.jgrapht.graph.*;
import org.jgrapht.traverse.*;
import org.jgrapht.util.SupplierUtil;
import java.util.*;
import java.util.function.Supplier;
//@example:class:begin
/**
* Demonstrates how to create a complete graph and perform a depth first search on it.
*
*/
public final class CompleteGraphDemo
{
// number of vertices
private static final int SIZE = 10;
/**
* Main demo entry point.
*
* @param args command line arguments
*/
public static void main(String[] args)
{
// Create the VertexFactory so the generator can create vertices
Supplier vSupplier = new Supplier()
{
private int id = 0;
@Override
public String get()
{
return "v" + id++;
}
};
//@example:generate:begin
// Create the graph object
Graph completeGraph = new SimpleGraph<>(vSupplier, SupplierUtil.createDefaultEdgeSupplier(), false);
// Create the CompleteGraphGenerator object
CompleteGraphGenerator completeGenerator =
new CompleteGraphGenerator<>(SIZE);
// Use the CompleteGraphGenerator object to make completeGraph a
// complete graph with [size] number of vertices
completeGenerator.generateGraph(completeGraph);
//@example:generate:end
// Print out the graph to be sure it's really complete
Iterator iter = new DepthFirstIterator<>(completeGraph);
while (iter.hasNext()) {
String vertex = iter.next();
System.out.println(
"Vertex " + vertex + " is connected to: "
+ completeGraph.edgesOf(vertex).toString());
}
}
}
//@example:class:end
// End CompleteGraphDemo.java
© 2015 - 2025 Weber Informatics LLC | Privacy Policy