aboutsummaryrefslogtreecommitdiffstats
path: root/src/datastructures/linkedlists/ArrayCircularDoublyLinkedList.java
diff options
context:
space:
mode:
authorMattias Andrée <maandree@operamail.com>2014-01-23 15:50:29 +0100
committerMattias Andrée <maandree@operamail.com>2014-01-23 15:50:29 +0100
commitee6fa2e0bf2dcd6cdd833aa2f19fd30e9c23770b (patch)
treea0afde7dbf01ed39ccd0074e4eeff574f90c5109 /src/datastructures/linkedlists/ArrayCircularDoublyLinkedList.java
parentdoc (diff)
downloadalgorithms-and-data-structures-ee6fa2e0bf2dcd6cdd833aa2f19fd30e9c23770b.tar.gz
algorithms-and-data-structures-ee6fa2e0bf2dcd6cdd833aa2f19fd30e9c23770b.tar.bz2
algorithms-and-data-structures-ee6fa2e0bf2dcd6cdd833aa2f19fd30e9c23770b.tar.xz
xor-linked array linked lists
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to 'src/datastructures/linkedlists/ArrayCircularDoublyLinkedList.java')
-rw-r--r--src/datastructures/linkedlists/ArrayCircularDoublyLinkedList.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/datastructures/linkedlists/ArrayCircularDoublyLinkedList.java b/src/datastructures/linkedlists/ArrayCircularDoublyLinkedList.java
index 22cd43a..a77de10 100644
--- a/src/datastructures/linkedlists/ArrayCircularDoublyLinkedList.java
+++ b/src/datastructures/linkedlists/ArrayCircularDoublyLinkedList.java
@@ -30,6 +30,6 @@ package datastructures.linkedlists;
*
* @param <T> The value stored in the structure
*/
-£>export name=ArrayCircularDoublyLinkedList array=1 with_sentinel=0 with_head=0 with_tail=0 with_prev=1
+£>export name=ArrayCircularDoublyLinkedList array=1 with_sentinel=0 with_head=0 with_tail=0 with_prev=1 with_xor=0
£>$GPP -s £ < src/datastructures/linkedlists/template | sed -e '/^[/ ]\*/d' -e '/^$/d'