Generic Node Creation #13
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
To reduce the number of re-implementations of the node we could have it so that there is a generic definition of the node that is inherited off of by each datastructures unique node (If Needed)
string T value
Node next
need to find a way to set Next node to be the same type as the current node if we use a single node to inherit from.
Node<T, t> ????
LinkedListNode<T>:Node<T, LinkedListNode<T>>