Skip to content

Instantly share code, notes, and snippets.

View wmitchellUK's full-sized avatar

Will Mitchell wmitchellUK

  • ByteFoods, Development Peak, Bluesunrise
  • Petaluma, CA
View GitHub Profile
@wmitchellUK
wmitchellUK / Q10.2.java
Last active August 25, 2016 18:50
CC1 - Q10.2 #sorting #anagrams #lists #map #hashtable
package chap10;
import java.util.*;
public class Q2{
public static void main(String args[]){
String [] anaList = new String[6];
@wmitchellUK
wmitchellUK / BinarySearchTree.java
Last active August 14, 2016 22:22 — forked from thmain/BinarySearchTree.java
BinarySearch Tree - Java - Implementation
public class BinarySearchTree {
public static Node root;
public BinarySearchTree(){
this.root = null;
}
public boolean find(int id){
Node current = root;
while(current!=null){
if(current.data==id){