-CSSE3100/7100

Assignment 3 CSSE3100/7100 Reasoning about Programs

Due: 4pm on 17 May, 2024

The aim of this assignment is to consolidate your understanding of the course's material on objects

and array-based data structures. It is worth 15% of your final mark for the course.

Instructions: Upload the provided Dafny file A3.dfy extended with your solution for Question 1

(and Question 2) if applicable to Gradescope by the due date and time.

1. The provided file A3.dfy contains skeletons for two Dafny classes. Your task is to provide verified

implementations for these classes following the approach detailed in the lectures. Stack will be a

bounded stack and Queue a bounded queue.https://weibo.com/u/7915668133

You should start your task by providing complete specifications of the desired behaviour of the

classes. The desired behaviour of a stack is that it is a last-in, first-out (LIFO) collection of values,

whereas the desired behaviour of a queue is that it is a first-in, first-out (FIFO) collection of values.

Since the data structures are bounded, their specifications should reflect that values can be added to

them only when they are not full, and removed from them only when they are not empty. (In

particular, you do not need to return a special 'None' value for the empty case.)

The class Stack should be implemented using a single array, and other variables (which are neither

objects nor arrays) as required. The class Queue should be implemented using two objects of class

Stack called stack1 and stack2 (and no other variables). Each of the stacks should have the same

maximum size as the queue. Values added to the queue will be pushed onto stack1, and values

removed from the queue will be popped from stack2. If stack2 is empty when a pop is required, all

elements of stack1 will first be popped and pushed onto stack2, so that they appear in stack2 in the

reverse order to the order they were originally pushed onto stack1.

To move the elements from stack1 to stack2, the Remove method of Queue will require a loop and

hence a loop invariant. Make sure your loop invariant implies the method's postcondition when the

loop guard is false. Think about the loop design techniques to ensure this. If needed, you may define

additional ghost predicates to use in your invariant to reduce complexity. [15 marks]

2. CSSE7100 students only. Add an extra method, Peek, and its specification to Queue. The Peek

method returns the same element as Remove but does not remove it from the queue.

You must not change the Stack class to do this. Instead Peek should call Remove to get and remove

the element from stack2, and then should push that element back onto stack2. [2 marks]

Marking

You will get marks for

• correctness and completeness of specifications following the approach in lectures

• correctness and completeness of the loop invariant

• code which verifies in Dafny.

Note that you will get part marks even if your code doesn't verify in Dafny.

For CSSE7100 students, the final mark is M + (m - 2) where M is the mark for Question 1 (out of 15)

and m is the mark for Question 2 (out of 2). The mark you will see on Gradescope for Question 2 will

be (m - 2). Note that this will be 0 for m = 2 and negative for a mark less than 2.

Copyright Notice © This content is protected and may not be shared, uploaded or distributed. The School of EECS at the University of Queensland

holds the copyright for this material. Students are not permitted to share these materials on sites external to the University of Queensland.

School Policy on Student Misconduct

This assignment is to be completed individually. You are required to read and understand the School

Statement on Misconduct, available on the School's website at: http://www.itee.uq.edu.au/itee-

student-misconduct-including-plagiarism

This assessment task evaluates students' abilities, skills and knowledge without the aid of generative

Artificial Intelligence (AI). Students are advised that the use of AI technologies to develop responses

is strictly prohibited and may constitute student misconduct under the Student Code of Conduct.

Copyright Notice © This content is protected and may not be shared, uploaded or distributed. The School of EECS at the University of Queensland

holds the copyright for this material. Students are not permitted to share these materials on sites external to the University of Queensland.

相关推荐

  1. <span style='color:red;'>CSS</span>

    CSS

    2024-05-12 06:56:10      28 阅读
  2. <span style='color:red;'>CSS</span>

    CSS

    2024-05-12 06:56:10      41 阅读
  3. -CSSE3100/7100

    2024-05-12 06:56:10       14 阅读
  4. CSS:css简介

    2024-05-12 06:56:10       13 阅读
  5. CSS总结

    2024-05-12 06:56:10       37 阅读
  6. css基础

    2024-05-12 06:56:10       39 阅读
  7. CSS-2

    2024-05-12 06:56:10       35 阅读
  8. CSS-1

    2024-05-12 06:56:10       43 阅读

最近更新

  1. Spring AOP 基础知识

    2024-05-12 06:56:10       1 阅读
  2. PHP MySQL 简介

    2024-05-12 06:56:10       1 阅读
  3. linux 文件末尾追加内容

    2024-05-12 06:56:10       1 阅读
  4. 从IE到Edge:微软浏览器的演变与未来展望

    2024-05-12 06:56:10       1 阅读
  5. 浅谈ES6

    2024-05-12 06:56:10       1 阅读
  6. 风景园林工程设计乙级资质业绩要求案例分析

    2024-05-12 06:56:10       1 阅读

热门阅读

  1. 大数据常用命令-Kafka

    2024-05-12 06:56:10       13 阅读
  2. 算法设计与分析期末复习题汇总

    2024-05-12 06:56:10       12 阅读
  3. 【八股系列】在css中link和@import的区别是什么?

    2024-05-12 06:56:10       13 阅读
  4. 常用CSS和XPATH元素定位方法

    2024-05-12 06:56:10       8 阅读
  5. Sass详解:颠覆CSS开发的新时代

    2024-05-12 06:56:10       15 阅读
  6. 学习使用jQuery将光标移动到textarea的末尾

    2024-05-12 06:56:10       12 阅读
  7. AlmaLinux 文件拷贝 cp命令用法示例

    2024-05-12 06:56:10       12 阅读
  8. class常量池、运行时常量池和字符串常量池详解

    2024-05-12 06:56:10       9 阅读
  9. 【Bug】Clash出现端口0的情况

    2024-05-12 06:56:10       13 阅读