Skip to content

Instantly share code, notes, and snippets.

View jaavant's full-sized avatar

Johnathan A`Vant jaavant

View GitHub Profile
import java.io.*;
import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.Paths;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.BitSet;
public class Main {
//ARGS must include file ext...
@jaavant
jaavant / LowestTrav.java
Last active December 31, 2016 08:36
Algorithms Assignment 3
import java.util.Hashtable;
public class LowestTrav {
static int nodeVisits = 0;
static Hashtable<TreeNode, Integer> table = new Hashtable<TreeNode, Integer>();
public static void main(String args[]){
TreeNode tree = createTree();