首页
编程语言
数据库
网络开发
Algorithm算法
移动开发
系统相关
金融统计
人工智能
其他
首页
>
> 详细
讲解ELEC0021、辅导Java程序语言、讲解Programming II、辅导Java 讲解数据库SQL|讲解R语言程序
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.
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 (
) // 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
工作时间:8:00-21:00
微信:codinghelp
热点文章
更多
辅导 comm2000 creating socia...
2026-01-08
讲解 isen1000 – introductio...
2026-01-08
讲解 cme213 radix sort讲解 c...
2026-01-08
辅导 csc370 database讲解 迭代
2026-01-08
讲解 ca2401 a list of colleg...
2026-01-08
讲解 nfe2140 midi scale play...
2026-01-08
讲解 ca2401 the universal li...
2026-01-08
辅导 engg7302 advanced compu...
2026-01-08
辅导 comp331/557 – class te...
2026-01-08
讲解 soft2412 comp9412 exam辅...
2026-01-08
讲解 scenario # 1 honesty讲解...
2026-01-08
讲解 002499 accounting infor...
2026-01-08
讲解 comp9313 2021t3 project...
2026-01-08
讲解 stat1201 analysis of sc...
2026-01-08
辅导 stat5611: statistical m...
2026-01-08
辅导 mth2010-mth2015 - multi...
2026-01-08
辅导 eeet2387 switched mode ...
2026-01-08
讲解 an online payment servi...
2026-01-08
讲解 textfilter辅导 r语言
2026-01-08
讲解 rutgers ece 434 linux o...
2026-01-08
热点标签
mktg2509
csci 2600
38170
lng302
csse3010
phas3226
77938
arch1162
engn4536/engn6536
acx5903
comp151101
phl245
cse12
comp9312
stat3016/6016
phas0038
comp2140
6qqmb312
xjco3011
rest0005
ematm0051
5qqmn219
lubs5062m
eee8155
cege0100
eap033
artd1109
mat246
etc3430
ecmm462
mis102
inft6800
ddes9903
comp6521
comp9517
comp3331/9331
comp4337
comp6008
comp9414
bu.231.790.81
man00150m
csb352h
math1041
eengm4100
isys1002
08
6057cem
mktg3504
mthm036
mtrx1701
mth3241
eeee3086
cmp-7038b
cmp-7000a
ints4010
econ2151
infs5710
fins5516
fin3309
fins5510
gsoe9340
math2007
math2036
soee5010
mark3088
infs3605
elec9714
comp2271
ma214
comp2211
infs3604
600426
sit254
acct3091
bbt405
msin0116
com107/com113
mark5826
sit120
comp9021
eco2101
eeen40700
cs253
ece3114
ecmm447
chns3000
math377
itd102
comp9444
comp(2041|9044)
econ0060
econ7230
mgt001371
ecs-323
cs6250
mgdi60012
mdia2012
comm221001
comm5000
ma1008
engl642
econ241
com333
math367
mis201
nbs-7041x
meek16104
econ2003
comm1190
mbas902
comp-1027
dpst1091
comp7315
eppd1033
m06
ee3025
msci231
bb113/bbs1063
fc709
comp3425
comp9417
econ42915
cb9101
math1102e
chme0017
fc307
mkt60104
5522usst
litr1-uc6201.200
ee1102
cosc2803
math39512
omp9727
int2067/int5051
bsb151
mgt253
fc021
babs2202
mis2002s
phya21
18-213
cege0012
mdia1002
math38032
mech5125
07
cisc102
mgx3110
cs240
11175
fin3020s
eco3420
ictten622
comp9727
cpt111
de114102d
mgm320h5s
bafi1019
math21112
efim20036
mn-3503
fins5568
110.807
bcpm000028
info6030
bma0092
bcpm0054
math20212
ce335
cs365
cenv6141
ftec5580
math2010
ec3450
comm1170
ecmt1010
csci-ua.0480-003
econ12-200
ib3960
ectb60h3f
cs247—assignment
tk3163
ics3u
ib3j80
comp20008
comp9334
eppd1063
acct2343
cct109
isys1055/3412
math350-real
math2014
eec180
stat141b
econ2101
msinm014/msing014/msing014b
fit2004
comp643
bu1002
cm2030
联系我们
- QQ: 99515681 微信:codinghelp
© 2024
www.7daixie.com
站长地图
程序辅导网!