Commit 06478f9

mo khan <mo.khan@gmail.com>
2020-07-04 18:10:40
Add program profile
1 parent acd5149
Changed files (1)
src
src/01/01a/README.md
@@ -1,4 +1,9 @@
-# Assignment 1 - Question 1a - Computer Science 272: Data Structures and Algorithms
+# Learning Profile for Assignment #1 - Question #1a - Computer Science 272: Data Structures and Algorithms
+
+Name: Mo Khan
+Student ID: 3431709
+
+1. Problem Statement:
 
 * Describe the meaning of the essential methods `add(x)`, `deleteMin()`, and `size()` that are supported by the priority queue interface.
 * Implement those methods using a singly-linked list.
@@ -8,3 +13,8 @@
   * The `size()` method is used to determine how many items are in the queue.
   * The `add(x)` function is linear time O(n).
   * The `deleteMin(x)` function is constant time O(1).
+
+2. Description of the Code:
+3. Errors and Warnings:
+4. Sample Input and Output:
+5. Discussion: