Computer Science 210
Data Structures

Fall 2016, Siena College

Lecture 22: Linear Structures: Stacks
Date: Friday, October 28, 2016


Agenda

Lecture 22 Assignment

Due at the start of class, Wednesday, November 2.

Please submit answers to these questions by the start of class. zyBook activities should be done right in your zyBook. We will discuss these questions at the start of class, so no late submissions can be accepted.

Complete all participation and challenge activities in Chapter 16 of your zyBook. Each "completion square" achieved for a participation activity is worth half of a point, for a total of 17 points.

I hope the "language independent" notation they use is not too confusing. If you see

  QueuePush(queue, Item17)

think in Java terms of the code

   queue.push(Item17);

for some previously constructed queue structure named queue.

Terminology