ELEC0021 Programming

ELEC0021 Programming II 2018-19 Prof. G. Pavlou
1
PROGRAMMING ASSIGNMENT 2
Ordered Linked List
In this programming exercise you are going to design, implement and test an ordered linked
list based on the generic List class introduced in the notes. The purpose of this exercise is to
understand in detail the use of inheritance through generic methods that are provided in
superclasses and can be used in diverse subclasses, resulting in reusability and extensibility. In
this specific case, generic find, insert and remove methods will be added to class OrderedList
(demonstrating reusability) and then could be used by specific subclasses, e.g. IntegerList,
StringList, etc., by introducing type-specific compare methods (demonstrating extensibility).
The class List introduced in the notes supports linked list functionality in terms of inserting
and retrieving elements to/from the front and back of the list only. But in some applications,
e.g. time-driven simulation of a real system, elements need to be inserted in the list keeping it
ordered, e.g. representing the time when an event will happen. In such a use of an ordered
linked list, elements are only retrieved from the front of the list, e.g. as time advances and the
first item in the list becomes the “current event”, and are inserted in the right place in the list
keeping it ordered. Another example is a list of student records ordered based on name.
So the first part of this exercise is to create an abstract class OrderedList class by extending
List and adding the following methods:
protected abstract int compare(Object obj1, Object obj2);
public ListNode find (Object newData) { /* to impl */ }
public boolean insert (Object newData) { /* to impl */ }
public ListNode remove (Object remData) { /* to impl */ }
The compare method does not know what types of objects to compare, as such it is abstract
making also OrderedList an abstract class. It is also protected as it is only used by this class
and derived classes.
The find method should “walk-through” the list, check to see if a ListNode with the same data
as newData exists by using compare and, if so, return it. The remove method should also
“walk” through the list to find the sought element, but if it exists it should remove and return
it. In order to do this we need to keep a reference to the previous element so that we are able
to link it with the element after the one to remove.
The insert method should also use compare to insert a new object in the list while keeping it
in order. It should check first using find if the element already exists to avoid duplicates. In
order to insert an element in-between two others, we need to have a reference to the previous
one and check if the element to insert is smaller than the next one, in which case it should be
inserted in-between the two. So a special “walk-though” the list is also required.
Note that by implementing the OrderedList through inheritance, we have the problem that the
List insertAtFront and insertAtBack methods can still be used while they should not! You
should redefine them to do nothing and just print a relevant error message.
Having now implemented OrderedList, you should implement a subclass IntegerOrdList
which should simply redefine the compare method. The redefined compare method should
also be protected and should now assume that the two objects are of type Integer, so the
arguments of type Object should be “casted back” to Integer, for example ((Integer)
obj1).intValue() returns the actual integer value in argument obj1. A negative result should
mean obj1<obj2, zero should mean obj1=obj2 and a positive result should mean obj1>obj2.
You should also provide constructors which should initialise the list and its name.
ELEC0021 Programming II 2018-19 Prof. G. Pavlou
2
Having implemented the IntegerOrdList, you should also implement an IntegerOrdListTest
program that should demonstrate that the list works correctly. This should be done by getting
numbers from the user and inserting them. It should also support removal of a number the
user specifies. You should implement a small menu to guide the user through activities to add
a number, remove a number, print the list, etc.
The second part of this assignment will use exactly the same generic class infrastructure (List
and OrderedList) to implement a student record database in a similar fashion to last year’s C
assignment but without saving data to and retrieving them from a file. You should start by
introducing a StudentRecord class as follows:
public class StudentRecord {
public String surname;
public String name;
public int studentNo;
public float averageMark;
public String toString () // toString, implement
public StudentRecord (<parms>) // constructor, implement
}
You should also implement a StudentRecordOrdList which should be a very easy job given
that all the work is effectively done by OrderedList and you have already implemented
IntegerOrdList which is very similar (only the 1-line compare method will be different). For
the compare method, you should concatenate surname and name which together make the
student record unique.
Having implemented the StudentRecordOrdList, you should write a small program that allows
the user to introduce a student record (surname, name, number), remove a student record
(based on surname, name), include the average mark in a student’s record, find and print a
student’s record and finally print all students’ records. For the last feature, you may reimplement/overwrite
StudentRecordOrdList toString to print a record per line – the List
toString prints all elements in a single line. For this you may use the List getFirst method to
get a handle and walk through the data. (Note: you should treat the List as a Library class for
which you do not have access to its source code, hence you cannot change List toString).
You will realise that doing all this is very easy based on the generic object-oriented
infrastructure you created (i.e. List, OrderedList) which enables us to implement lists of any
content quickly and efficiently through reusability (we are reusing List and OrderedList) and
extensibility (we use inheritance to implement very easily StudentRecordOrdList).
You will be examined in the lab session of the 15 March, additional details will be provided
through moodle announcements. You should also submit at that time the following files:
OrderedList.java, IntegetOrdList.java, StudentRecordOrdList.java and the files of the two
programs implemented.

因为专业,所以值得信赖。如有需要,请加QQ:99515681 或邮箱:99515681@qq.com

微信:codinghelp

原文地址:https://www.cnblogs.com/whltay/p/10548250.html

时间: 2024-10-30 08:47:42

ELEC0021 Programming的相关文章

Functional Programming.

I have been seeing Redux for sometime, but recently I come to realize that , it's part of so called functional programming. The basic idea for functional programming is so simple, Declare all dependency as function input, no hidden input ( we should

Go语言自述(The Go Programming Language README)

声明:本文为笔者为练习英语所做的翻译练习,原文所属者与笔者没有任何关系,翻译结果不代表原文所属者的观点.笔者不保证翻译的正确性,任何人以任何形式的对本文的引用,都是不负责任和荒谬的行为,造成的后果笔者不予负责. 原文链接所属:golang/go Go is an open source programming language that makes it easy to build simple,reliable, and efficient software. Go是一门开源的编程语言,用它可

Algorithm Part I:Programming Assignment(2)

问题描述: Programming Assignment 2: Randomized Queues and Deques Write a generic data type for a deque and a randomized queue. The goal of this assignment is to implement elementary data structures using arrays and linked lists, and to introduce you to g

Java Object Oriented Programming concepts

Introduction This tutorial will help you to understand about Java OOP'S concepts with examples. Let's discuss about what are the features of Object Oriented Programming. Writing object-oriented programs involves creating classes, creating objects fro

How To: Perl TCP / UDP Socket Programming using IO::Socket::INET

http://www.thegeekstuff.com/2010/07/perl-tcp-udp-socket-programming/ In this article, let us discuss how to write Perl socket programming using the inbuilt socket modules in Perl. Perl socket modules provides an object interface that makes it easier

Unity基于响应式编程(Reactive programming)入门

系列目录 [Unity3D基础]让物体动起来①--基于UGUI的鼠标点击移动 [Unity3D基础]让物体动起来②--UGUI鼠标点击逐帧移动 时光煮雨 Unity3D让物体动起来③—UGUI DoTween&Unity Native2D实现 时光煮雨 Unity3D实现2D人物动画① UGUI&Native2D序列帧动画 时光煮雨 Unity3D实现2D人物动画② Unity2D 动画系统&资源效率 背景 前有慕容小匹夫的一篇<解构C#游戏框架uFrame兼谈游戏架构设计&

Distributed Programming With Ruby》读书笔记六 Starfish, Distribunaut and Politics (Part2 chapter4-6)

Chapter4: Starfish (海星?)这样的例子有时间换linux的环境试一下吧 Starfish1 bills itself as "a utility to make distributed programming ridiculously easy." I think that is a bit of an overstatement, but Starfish certainly can make distributed programming easier. Thi

Async/Await - Best Practices in Asynchronous Programming

https://msdn.microsoft.com/en-us/magazine/jj991977.aspx Figure 1 Summary of Asynchronous Programming Guidelines Name Description Exceptions Avoid async void Prefer async Task methods over async void methods Event handlers Async all the way Don’t mix

Dynamic Programming

We began our study of algorithmic techniques with greedy algorithms, which in some sense form the most natural approach to algorithm design. Faced with a new computational problem, we've seen that it's not hard to propose multiple possible greedy alg