Assignments | Class Photo | Computing Resources | Course Home | Lab Hours/Tutoring | Schedule | Submit

Saint Louis University

Computer Science 180
Data Structures

Michael Goldwasser

Spring 2009

Dept. of Math & Computer Science

Homework Assignment 04

Amortization, Lists

Contents:


Overview

Topic: Amortizations, Lists
Related Reading: Ch. 5
Due: Tuesday, 24 March 2009, 10:00am

Please make sure you adhere to the policies on academic integrity.


Problems to be Submitted (20 points)

  1. (10 points)

    In the solutions for an earlier homework, we gave a method for implementing a queue with the use of two stack data structures. Although this method was relatively simple to understand, it was not very efficient. This is true both in terms of worst-case analysis and amortized analysis.

    Here, we present an alternative solution. Whereas the original solution used stack S2 only temporarily to hold objects, this new method uses both stacks S1 and S2 for storing objects. Although you are not required to argue the correctness of this new method, you will certainly need to understand how and why it works to complete this assignment.

    template <typename Object>
    class queue {
    public:
      int size() const { return S1.size() + S2.size();  }
    
      bool empty() const { return S1.empty() && S2.empty();  }
    
      void push(const Object& item) { S1.push(obj); }
    
      void pop()  {
        if (S2.empty())
          transferItems();
        S2.pop();
      }
    
      Object& front() {
        if (S2.empty())
          transferItems();
        return(S2.top());
      }
    
    private:
      // Do not use any data members other than the following two stacks
      std::stack<Object> S1;
      std::stack<Object> S2;
    
      void transferItems() {
        int s = S1.size();
        for (int i=0; i<s; i++) {
          S2.push(S1.top());
          S1.pop();
        }
      }
    };

    For the new implementation, the worst-case time per operation is not guaranteed to be O(1). However, it can be shown that each operation requires only O(1) amortized time. Your job is to prove this amortized bound using the accounting method described in Ch. 5.1.3 of the text. Specifically, you should imagine yourself in the role of the queue implementor. The person who has implemented the stack has demanded that you pay $1 cyber-dollar every time your code calls one of the stack methods.

  2. (5 points)

    In earlier class notes, we provided our own implementation of a list class that mimics the public interface of the std::list. However, the standard list has additional behaviors that were not in our implementation. One of those has the following signature.

          /** Splice one list into another.
            * All elements of other list are removed from that list and
            * inserted into this list immediately before the given position.
            *
            * A call runs in constant time and all iterators remain valid,
            * including iterators that point to elements of other.
            *
            * @param position must be an iterator into this list
            * @param other must be a distinct list (i.e., &other != this)
            */
          void splice(iterator position, list& other);
          

    Give a valid implementation of a slice method in the context of our original list implementation.

  3. (5 points)

    Another method supported by the std::list class is the following.

          /** Reverse the order of elements in the list.  All iterators
            * remain valid and continue to point to the same elements.
            * This function is linear time.
            */
          void reverse();
          

    Give a valid implementation of the reverse method in the context of our original list implementation. Please note that to maintain the validity of all existing iterators, you must not create or destroy any nodes nor change the element of a node. The only way to successfully implement this behavior is by relinking the existing nodes into the desired order.


Extra Credit

  1. (2 points)

    Creativity Exercise C-5.4 of the text.

    Note: Although you will need to understand Exercise C-5.3, you do not need to writeup that solution.


Michael Goldwasser
CSCI 180, Spring 2009
Last modified: Monday, 16 March 2009
Assignments | Class Photo | Computing Resources | Course Home | Lab Hours/Tutoring | Schedule | Submit