Processing math: 100%
Login
Close
Register
Close Window

TDDI16 Fall 2021

Chapter 4 Linear Structures

Show Source |    | About   «  4.3. The List ADT   ::   Contents   ::   4.5. Linked Lists  »

4.4. Array-Based List Implementation

4.4.1. Array-Based List Implementation

Here is an implementation for the array-based list, named AList. AList inherits from the List ADT,and so must implement all of the member functions of List.

// Array-based list implementation
class AList : public List {
  ListItemType listArray[MAX_SIZE];  //Array holding list elements
  int listSize;   //Current number of list items
  int curr;   //Position of current element

  public:

  //Constructor
  // Create a new list element with maximum size "MAX_SIZE"
  AList() : listSize(0) {
    //Initial the array
    for (int k = 0; k < MAX_SIZE; k++) listArray[k] = 0;
  } //end constructor

  bool isEmpty() const {
    return listSize == 0;
  }

  void clear() {             // Reinitialize the list
    listSize = curr = 0;     // Simply reinitialize values
  }

  // Insert "it" at current position
  bool insert(const ListItemType& it) {
    if (listSize >= MAX_SIZE) return false;
    for (int i = listSize; i > curr; i--) //Shift elements up
      listArray[i] = listArray[i-1];      //to make room
    listArray[curr] = it;
    listSize++;                           //Increment list size
    return true;
  }

  // Append "it" to list
  bool append(const ListItemType& it) {
    if ( listSize >= MAX_SIZE ) return false;
    listArray[listSize++] = it;
    return true;
  }

  // Remove and return the current element
  ListItemType remove() {
    if( (curr < 0) || (curr >= listSize) )  // No current element
      return 0;
    ListItemType it = listArray[curr];      // Copy the element
    for (int i = curr; i < listSize; i++)   // Shift them down
      listArray[i] = listArray[i+1];
    listSize--;                             // Decrement size
    return it;
  }

  void moveToStart() { curr = 0; }          // Set to front
  void moveToEnd() { curr = listSize; }     // Set to end
  void prev() { if (curr != 0) curr--; }    // Move left
  void next() { if (curr < listSize) curr++; } // Move right
  int length() { return listSize; }         // Return list size
  int currPos() { return curr; }            // Return current position

  // Set current list position to "pos"
  bool moveToPos(int pos) {
    if ((pos < 0) || (pos > listSize)) return false;
    curr = pos;
    return true;
  }

  // Return true if current position is at end of the list
  bool isAtEnd() { return curr == listSize; }

  // Return the current element
  ListItemType getValue() {
    if ((curr < 0) || (curr >= listSize)) // No current element
      return 0;
    return listArray[curr];
  }
};

1 / 8 Settings
<<<>>>

Let's take a look at the private data members for class AList.

  • class AList : public List {
  • ListItemType listArray[MAX_SIZE]; //Array holding list elements
  • int listSize; //Current number of list items
  • int curr; //Position of current element
Proficient Saving... Error Saving
Server Error
Resubmit

1 / 5 Settings
<<<>>>

Class AList stores the list elements in the first listSize contiguous array positions. In this example, listSize is 5.

  1. 130
  2. 121
  3. 202
  4. 83
  5. 34
  6. 5
  7. 6
  8. 7
Proficient Saving... Error Saving
Server Error
Resubmit

4.4.1.1. Insert

Because the array-based list implementation is defined to store list elements in contiguous cells of the array, the insert, append, and remove methods must maintain this property.

1 / 6 Settings
<<<>>>

Inserting an element at the head of an array-based list requires shifting all existing elements in the array by one position toward the tail.

Created with Raphaël 2.1.2
  • // Insert "it" at current position
  • bool insert(const ListItemType& it) {
  • if (listSize >= MAX_SIZE) return false;
  • for (int i = listSize; i > curr; i--) //Shift elements up
  • listArray[i] = listArray[i-1]; //to make room
  • listArray[curr] = it;
  • listSize++; //Increment list size
  • return true;
  • }
Proficient Saving... Error Saving
Server Error
Resubmit

4.4.1.2. Insert Practice Exericse

4.4.2. Append and Remove

1 / 5 Settings
<<<>>>

Inserting at the tail of the list is easy.

Created with Raphaël 2.1.2
    1. 130
    2. 121
    3. 202
    4. 83
    5. 34
    6. 5
    7. 6
    8. 7
    maxSize
    1. 8
    listSize
    1. 5
    Proficient Saving... Error Saving
    Server Error
    Resubmit

    Removing an element from the head of the list is similar to insert in that all remaining elements must shift toward the head by one position to fill in the gap. If we want to remove the element at position i, then ni1 elements must shift toward the head, as shown in the following slideshow.

    1 / 6 Settings
    <<<>>>

    Here is a list containing five elements. We will remove the value 12 in position 1 of the array, which is the current position.

    Created with Raphaël 2.1.2
    1. 130
    2. 121
    3. 202
    4. 83
    5. 34
    6. 5
    7. 6
    8. 7
      curr
      listSize
      1. 1
      1. 5
      Proficient Saving... Error Saving
      Server Error
      Resubmit

      In the average case, insertion or removal each requires moving half of the elements, which is Θ(n).

      4.4.2.1. Remove Practice Exericise

      Aside from insert and remove, the only other operations that might require more than constant time are the constructor and clear. The other methods for Class AList simply access the current list element or move the current position. They all require Θ(1) time.

      4.4.3. Array-based List Practice Questions

         «  4.3. The List ADT   ::   Contents   ::   4.5. Linked Lists  »

      nsf
      Close Window