This file contains 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
package scratch; | |
import java.util.Deque; | |
import java.util.LinkedList; | |
import java.util.List; | |
import java.util.function.Consumer; | |
public class IterativeTreeSearches { | |
static final public class Node<T> { | |
T value; |
This file contains 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
<?php | |
/** | |
* Class DIC - Dependency Inversion Container | |
* - Lazy Loads all objects into existence | |
*/ | |
class DIC | |
{ | |
/** | |
* Holds all callable methods to create our objects | |
* @var array |