aboutsummaryrefslogtreecommitdiffstats
path: root/src/datastructures/linkedlists/ArrayCircularDoublyLinkedList.java
diff options
context:
space:
mode:
authorMattias Andrée <maandree@operamail.com>2014-01-23 11:27:07 +0100
committerMattias Andrée <maandree@operamail.com>2014-01-23 11:27:07 +0100
commit74eb1490e1d19d030981e9ef1554018526c16df2 (patch)
tree48901557639c1e3d82e6d5c3d7934ea62e60135b /src/datastructures/linkedlists/ArrayCircularDoublyLinkedList.java
parentm (diff)
downloadalgorithms-and-data-structures-74eb1490e1d19d030981e9ef1554018526c16df2.tar.gz
algorithms-and-data-structures-74eb1490e1d19d030981e9ef1554018526c16df2.tar.bz2
algorithms-and-data-structures-74eb1490e1d19d030981e9ef1554018526c16df2.tar.xz
whoops + add array sentinel 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 7e059bd..7be7dae 100644
--- a/src/datastructures/linkedlists/ArrayCircularDoublyLinkedList.java
+++ b/src/datastructures/linkedlists/ArrayCircularDoublyLinkedList.java
@@ -26,6 +26,6 @@ package datastructures.linkedlists;
*
* @param <T> The value stored in the structure
*/
-£>export name=ArrayCircularDoublyLinkedList with_head=0 with_tail=0 with_prev=1
+£>export name=ArrayCircularDoublyLinkedList with_sentinel=0 with_head=0 with_tail=0 with_prev=1
£>$GPP -s £ < src/datastructures/linkedlists/array-template | sed -e '/^[/ ]\*/d'