Skip to content
This repository was archived by the owner on Feb 29, 2024. It is now read-only.

Commit f6606d3

Browse files
committed
Create eulertour.java
1 parent 7d90865 commit f6606d3

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

other/eulertour.java

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
import java.util.*;
2+
public class eulertour {
3+
Stack<node> path = new Stack<node>();
4+
LinkedList<node> full_path = new LinkedList<node>();
5+
public void tour(node start, VisitListener vl) {
6+
path.clear();
7+
full_path.clear();
8+
9+
}
10+
public static void main(String[] args) {
11+
12+
}
13+
14+
}

0 commit comments

Comments
 (0)