This file contains hidden or 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
| // Java program to print DFS | |
| // traversal from a given | |
| // graph | |
| import java.io.*; | |
| import java.util.*; | |
| // This class represents a | |
| // directed graph using adjacency | |
| // list representation | |
| class Graph { |