p^.rlink=q
q^.llink=p
|
|
The pascal operator It dereferences the pointer (in your case, |
|||
|
|
|
When caret (^) appears after a pointer variable it dereferences the pointer, that is, it returns the value stored at the memory address held by the pointer. So in your case I suppose that |
|||
|
|
A likely possibility is that p and q are elements in a doubly-linked list, often called a bi-directional linked list. Those two statements are attaching them together, with p on the "left" and q on the "right". An equivalent in C/C++ would be:
|
|||
|
|
|
The |
|||
|
|
|
p and q appear to be pointers. They point to a record variables which have respectively (or probably both), a rlink and llink (guessing right link and left link). This snippet is probably used in the context of a graph or maybe a linked list of sorts. The caret (^) operator, in Pascal, is the dereference opertator which enables one to access the variable content not the the pointer. The direct equivalent in C language would be
but of course this would typically be expressed as
with C's -> operator which does a deferencing and member access in one step. |
|||
|
|