blob: ceab17a17b9fdfe499f5ea2ebc84c5461c99876c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# Learning Profile for Assignment #1 - Question #1b - Computer Science 272: Data Structures and Algorithms
Name: Mo Khan
Student ID: 3431709
1. Problem Statement:
Implement the stack methods `push(x)` and `pop()` using two queues.
Analyze the running time of the push(x) and pop() operations based on this implementation.
2. Description of the Code:
3. Errors and Warnings:
4. Sample Input and Output:
5. Discussion:
|