Initial data commit
This commit is contained in:
parent
72d218235f
commit
f23f22d71c
199087 changed files with 3378941 additions and 0 deletions
|
|
@ -0,0 +1,7 @@
|
|||
/* Let H be a pointer to a node in a one-way-linked list. */
|
||||
/* Insert an element, whose value is given by variable V, following that node. */
|
||||
|
||||
allocate node set (Q);
|
||||
node.p = H; /* The new node now points at the list where we want to insert it. */
|
||||
node.value = V;
|
||||
H->p = Q; /* Break the list at H, and point it at the new node. */
|
||||
Loading…
Add table
Add a link
Reference in a new issue