Homework 5: Priority Queues

Generic implementations of priority queue

Current version: 03/30/2012

Note: This assignment is used to assess some of the required ABET outcomes for the degree program. The outcomes assessed here are:

(a) an ability to apply knowledge of computing and mathematics appropriate to the discipline (graph theory, big-O notation)

(c) an ability to design, implement, and evaluate a computer-based system, process, component, or program to meet desired needs

(i) an ability to use current techniques, skills, and tools necessary for computing practice

These will be assessed using the following specific outcomes and scoring rubric

Rubric for Specific Outcomes i.-vi. I E H  
Key:
  I = ineffective
  E = effective
  H = highly effective
i. ADT Instantiation - API/Interface - - -
ii. ADT Instantiation - Method Implementation - - -
iii. Runtime Analysis - Result - - -
iv. Runtime Analysis - Process - - -
v. ADT Application - Design/Setup - - -
vi. ADT Application - Implementation - - -

In order to earn a course grade of C- or better, the assessment must result in Effective or Highly Effective for five (5) of the specific outcomes in the rubric.

Educational Objectives: After completing this assignment, the student should be able to accomplish the following:

Experience applying the following concepts: associative generic containers; generic algorithms; priority queue; and developing and testing multiple implementations using namespace.

Operational Objectives: Design and implement six (6) distinct implementations of the Priority Queue template PriorityQueue<T,P> based on List<T>, MOList<T,P>, Vector<T> (2), MOVector<T,P>, and Deque<T>. Use namespaces pq1, pq2, ... , pq6 to scope the six variations.

Deliverables: Two files pq.h and log.txt

Background:

A priority queue stores elements of typename T with a priority determined by an object of a predicate class P. The operations are syntactically queue-like but have associative semantics (rather than positional semantics, as in an ordinary queue). The operations for a priority queue PQ<T,P> and informal descriptions of them are as follows:

as well as default constructor, destructor, copy constructor, and assignment operator (i.e., we need priority queue to be a proper type). We will also use the following additional operations (as usual for our course library):

Priority queues are used in several important applications, including:

Priority queues are traditionally built as adaptations of other data structures using special algorithms. The most sophisticated of these are discussed in the chapter Binary Heaps. However, us usual, "most sophisticated" does not always translate as "best". "Best" is usually determined by client programmers based on the client needs. (Compare g_insertion_sort() with g_heap_sort() for example.)

In this assignment you will build priority queues using (1) one of our familiar Containers Vector<T>, Deque<T>, List<T>, MOVector<T,P>, MOList<T,P> as the data storage facility and (2) an appropriate algorithm for the search mechanism. In the case of heap-based priority queue (case 6) two generic algorithms will be required.

Procedural Requirements

  1. The official development/testing/assessment environment is: gnu g++ on the linprog machines.

  2. Be sure start and maintain your log.txt.

  3. After creating your log.txt, begin by copying all of the files from LIB/hw5 into your project directory.

  4. Create and work within a separate subdirectory. The usual COP 4530 rules apply (see Introduction/Work Rules). In particular: It is a violation of course ethics and the student honor code to use, or attempt to use, files other than those explicitly distributed in the course code library.

  5. Place all work in one file named pq.h.

  6. Turn in the files pq.h and log.txt using the hw5submit.sh script.

    Warning: Submit scripts do not work on the program and linprog servers. Use shell.cs.fsu.edu to submit assignments. If you do not receive the second confirmation with the contents of your project, there has been a malfunction.

Technical Requirements and Specifications

  1. Place all work in one file named pq.h. The code should use 6 distinct namespaces: std, fsu, pq1, pq2, pq3, pq4, pq5, and pq6.

  2. The first two namespaces are those encountered in the standard and course libraries. The other six are defined in the submitted code. These six namespaces define the scope of certain definitions, as shown in the following sample file documentation:

    /* pq.h
    
      Various implementations for PriorityQueue < T , P >
      organized by namespace as follows:
    
      nmsp  stbl container element order central algorithm      push     pop      front
      ----  ---- --------- ------------- -------------------    ----     ---      -----
      pq1   y    List      unordered     fsu::g_max_element()   O(1)     O(n)     O(n)
      pq2   y    MOList    sorted        MOList::Insert         O(n)     O(1)     O(1)
      pq3   n    Vector    unordered     fsu::g_max_element()   AO(1)    O(n)     O(n)
      pq4   y    Vector    unordered     fsu::g_max_element()   AO(1)    O(n)     O(n)
      pq5   y    MOVector  sorted        OVector::Insert        O(n)     O(1)     O(1)
      pq6   n    Deque     head          fsu::g_push/pop_heap() O(log n) O(log n) O(1)
    
      The pq3 version just copy the last element over the element
      to be removed, whereas the pq4 version does a leapfrog copy. Note that the
      leapfrog copy version is stable, the 1-element copy version is not.
    
    All of the pq namespaces are defined in this file.
    */
    

  3. Every method implementation must be one of three types:

    1. Type 1 (no search is required): the body consists of a single call to an operation of the underlying container

    2. Type 2 (search is required): the body uses a member function or a generic generic search algorithm with a minimum of ancillary code.

    3. Type 3 (heap-based): the body uses a generic heap algorithm with a minimum of ancillary code.

  4. Your submission is required to run correctly with the distributed client program tests/fpq.cpp. We will assess using fpq.cpp and another client program that uses a priority queue to sort data.

  5. The log file should contain (1) statements of the runtime of the various priority queue methods, (2) explanations [informal proofs] that your statements are correct, and (3) testing procedures and results of testing. (See specific ABET outcomes iii and iv above.)

  6. The file level documentation should contain brief descriptions of the design for each implementation of priority queue. (See specific ABET outcome v above). Please also include this in your log file.

Hints: