Let's say I wanted similar functionality to a doubly linked list but needed a matrix instead so that each node was structured like this:
public class Node
{
Node Up, Down, Left, Right;
object Value;
}
Is there a name for such a structure? I've looked through this Wikipedia listing of data structures but didn't see anything similar. Unless I just missed it.