mirror of
https://github.com/TheAlgorithms/Java.git
synced 2025-12-19 07:00:35 +08:00
File clean-up
This commit is contained in:
32
data_structures/Graphs/Graphs.java
Normal file
32
data_structures/Graphs/Graphs.java
Normal file
@@ -0,0 +1,32 @@
|
||||
|
||||
/**
|
||||
* This class implements the Graph data structure
|
||||
* using the classes Graph and Graphs.
|
||||
*
|
||||
* @author Zachary Jones
|
||||
*
|
||||
*/
|
||||
class Graph {
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* This class is used to test the Graph
|
||||
* class above.
|
||||
*
|
||||
* @author Zachary Jones
|
||||
*
|
||||
*/
|
||||
|
||||
public class Graphs {
|
||||
|
||||
/**
|
||||
* Main method
|
||||
*
|
||||
* @param args Command line arguments
|
||||
*/
|
||||
public static void main(String args[]) {
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user