class Node<T>
Created by gazollajunior on 07/04/16.
Node(value: T)
var next: Node<T>?
var previous: Node<T>?
var value: T