I understand what a linked list is, but my question is what is an orthogonal linked list? I searched on the web but couldn't find any helpful information. I am studying liked list in C++, if there any good books related to linked lists, please mention them.

link|improve this question
4  
It's not a very common term. Where did you find it? – Ben Voigt Feb 28 '11 at 16:30
feedback

1 Answer

up vote 9 down vote accepted

This is not a very common term, but, according to the Dictionary of Computing, it is a multi-dimensional linked list whose elements hold pointers to neighbors in each dimension.

Take a simple matrix:

1 2 3 
4 5 6
7 8 9

Then,the element 5 would have a pointer to 4 and 6, but also to 2 and 8.

And the following questions might be helpful regarding C++ books:

link|improve this answer
1  
so each element can have maximum 4 outgoing or incoming pointers ? – Muntasir Feb 28 '11 at 16:36
1  
well, in that definition, yes. But you could in principle construct linked lists with arbitrarily large neighborhoods. It is really a memory vs computation tradeoff. – Greg Feb 28 '11 at 16:38
1  
As a side note: its useful in path finding computations (e.g. games). – Zac Howland Feb 28 '11 at 16:44
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.