Possible Duplicate:
array of linked lists
I want to implement an array of linked lists in latex:
the array elements are the numbers{1,2,3} and every number in the array is ahead of linked list{the first element in array is the head of the linked list a->b->null, where a and b are the nodes in the linked list, and so on to the other array elements}
|1|->a->b->null
|2|->c->null
|3|->d->null
can you help me in this?
lists latex-project
\linkedlist{1={a,b,null},2={c,null},3={d,null}}and the output should be automated? – Werner Dec 12 '12 at 21:04