From ebbc4215ec39a8a6d0868a000e3c77cffd7c53d0 Mon Sep 17 00:00:00 2001
From: Mattias Andrée <maandree@operamail.com>
Date: Thu, 23 Jan 2014 13:30:57 +0100
Subject: doc
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

Signed-off-by: Mattias Andrée <maandree@operamail.com>
---
 src/datastructures/linkedlists/ArrayCircularDoublyLinkedList.java | 6 +++++-
 src/datastructures/linkedlists/ArrayCircularSinglyLinkedList.java | 6 +++++-
 src/datastructures/linkedlists/ArrayDoublyLinkedList.java         | 5 ++++-
 src/datastructures/linkedlists/ArraySentinelDoublyLinkedList.java | 6 +++++-
 src/datastructures/linkedlists/ArraySentinelSinglyLinkedList.java | 6 +++++-
 src/datastructures/linkedlists/ArraySinglyLinkedList.java         | 5 ++++-
 src/datastructures/linkedlists/ArrayTaillessDoublyLinkedList.java | 6 +++++-
 src/datastructures/linkedlists/ArrayTaillessSinglyLinkedList.java | 6 +++++-
 8 files changed, 38 insertions(+), 8 deletions(-)

(limited to 'src')

diff --git a/src/datastructures/linkedlists/ArrayCircularDoublyLinkedList.java b/src/datastructures/linkedlists/ArrayCircularDoublyLinkedList.java
index dc4453f..22cd43a 100644
--- a/src/datastructures/linkedlists/ArrayCircularDoublyLinkedList.java
+++ b/src/datastructures/linkedlists/ArrayCircularDoublyLinkedList.java
@@ -22,7 +22,11 @@ package datastructures.linkedlists;
  * linked list is a linked list constructed by parallel
  * arrays. In this implementation, when a node is
  * removed the value stored that that position is not
- * removed before that position is reused.
+ * removed before that position is reused. Insertion
+ * methods have constant amortised time complexity,
+ * and constant amortised memory complexity, removal
+ * methods have constant time complexity and constant
+ * memory complexity.
  * 
  * @param  <T>  The value stored in the structure
  */
diff --git a/src/datastructures/linkedlists/ArrayCircularSinglyLinkedList.java b/src/datastructures/linkedlists/ArrayCircularSinglyLinkedList.java
index 43c7737..db5d5b8 100644
--- a/src/datastructures/linkedlists/ArrayCircularSinglyLinkedList.java
+++ b/src/datastructures/linkedlists/ArrayCircularSinglyLinkedList.java
@@ -22,7 +22,11 @@ package datastructures.linkedlists;
  * linked list is a linked list constructed by parallel
  * arrays. In this implementation, when a node is
  * removed the value stored that that position is not
- * removed before that position is reused.
+ * removed before that position is reused. Insertion
+ * methods have constant amortised time complexity,
+ * and constant amortised memory complexity, removal
+ * methods have constant time complexity and constant
+ * memory complexity.
  * 
  * @param  <T>  The value stored in the structure
  */
diff --git a/src/datastructures/linkedlists/ArrayDoublyLinkedList.java b/src/datastructures/linkedlists/ArrayDoublyLinkedList.java
index df9fa40..a7fc1dd 100644
--- a/src/datastructures/linkedlists/ArrayDoublyLinkedList.java
+++ b/src/datastructures/linkedlists/ArrayDoublyLinkedList.java
@@ -22,7 +22,10 @@ package datastructures.linkedlists;
  * is a linked list constructed by parallel arrays. In
  * this implementation, when a node is removed the value
  * stored that that position is not removed before that
- * position is reused.
+ * position is reused. Insertion methods have constant
+ * amortised time complexity, and constant amortised
+ * memory complexity, removal methods have constant time
+ * complexity and constant memory complexity.
  * 
  * @param  <T>  The value stored in the structure
  */
diff --git a/src/datastructures/linkedlists/ArraySentinelDoublyLinkedList.java b/src/datastructures/linkedlists/ArraySentinelDoublyLinkedList.java
index 33d127a..97437c9 100644
--- a/src/datastructures/linkedlists/ArraySentinelDoublyLinkedList.java
+++ b/src/datastructures/linkedlists/ArraySentinelDoublyLinkedList.java
@@ -25,7 +25,11 @@ package datastructures.linkedlists;
  * a sentinel (dummy) node between the first node and
  * the last node. In this implementation, when a node
  * is removed the value stored that that position is
- * not removed before that position is reused.
+ * not removed before that position is reused. Insertion
+ * methods have constant amortised time complexity,
+ * and constant amortised memory complexity, removal
+ * methods have constant time complexity and constant
+ * memory complexity.
  * 
  * @param  <T>  The value stored in the structure
  */
diff --git a/src/datastructures/linkedlists/ArraySentinelSinglyLinkedList.java b/src/datastructures/linkedlists/ArraySentinelSinglyLinkedList.java
index 4101183..2ca034d 100644
--- a/src/datastructures/linkedlists/ArraySentinelSinglyLinkedList.java
+++ b/src/datastructures/linkedlists/ArraySentinelSinglyLinkedList.java
@@ -25,7 +25,11 @@ package datastructures.linkedlists;
  * a sentinel (dummy) node between the first node and
  * the last node. In this implementation, when a node
  * is removed the value stored that that position is
- * not removed before that position is reused.
+ * not removed before that position is reused. Insertion
+ * methods have constant amortised time complexity,
+ * and constant amortised memory complexity, removal
+ * methods have constant time complexity and constant
+ * memory complexity.
  * 
  * @param  <T>  The value stored in the structure
  */
diff --git a/src/datastructures/linkedlists/ArraySinglyLinkedList.java b/src/datastructures/linkedlists/ArraySinglyLinkedList.java
index e1421b7..7310695 100644
--- a/src/datastructures/linkedlists/ArraySinglyLinkedList.java
+++ b/src/datastructures/linkedlists/ArraySinglyLinkedList.java
@@ -22,7 +22,10 @@ package datastructures.linkedlists;
  * is a linked list constructed by parallel arrays. In
  * this implementation, when a node is removed the value
  * stored that that position is not removed before that
- * position is reused.
+ * position is reused. Insertion methods have constant
+ * amortised time complexity, and constant amortised
+ * memory complexity, removal methods have constant time
+ * complexity and constant memory complexity.
  * 
  * @param  <T>  The value stored in the structure
  */
diff --git a/src/datastructures/linkedlists/ArrayTaillessDoublyLinkedList.java b/src/datastructures/linkedlists/ArrayTaillessDoublyLinkedList.java
index d2c05d6..19cad2e 100644
--- a/src/datastructures/linkedlists/ArrayTaillessDoublyLinkedList.java
+++ b/src/datastructures/linkedlists/ArrayTaillessDoublyLinkedList.java
@@ -22,7 +22,11 @@ package datastructures.linkedlists;
  * linked list is a linked list constructed by parallel
  * arrays. In this implementation, when a node is
  * removed the value stored that that position is not
- * removed before that position is reused.
+ * removed before that position is reused. Insertion
+ * methods have constant amortised time complexity,
+ * and constant amortised memory complexity, removal
+ * methods have constant time complexity and constant
+ * memory complexity.
  * 
  * @param  <T>  The value stored in the structure
  */
diff --git a/src/datastructures/linkedlists/ArrayTaillessSinglyLinkedList.java b/src/datastructures/linkedlists/ArrayTaillessSinglyLinkedList.java
index 09de059..7e72881 100644
--- a/src/datastructures/linkedlists/ArrayTaillessSinglyLinkedList.java
+++ b/src/datastructures/linkedlists/ArrayTaillessSinglyLinkedList.java
@@ -22,7 +22,11 @@ package datastructures.linkedlists;
  * linked list is a linked list constructed by parallel
  * arrays. In this implementation, when a node is
  * removed the value stored that that position is not
- * removed before that position is reused.
+ * removed before that position is reused. Insertion
+ * methods have constant amortised time complexity,
+ * and constant amortised memory complexity, removal
+ * methods have constant time complexity and constant
+ * memory complexity.
  * 
  * @param  <T>  The value stored in the structure
  */
-- 
cgit v1.2.3-70-g09d2