联系方式

  • QQ:99515681
  • 邮箱:99515681@qq.com
  • 工作时间:8:00-21:00
  • 微信:codinghelp

您当前位置:首页 >> Python编程Python编程

日期:2023-10-13 11:15

SCIT

School of Computing and Information Technology

Faculty of Engineering & Information Sciences

CSIT101

Object Oriented Design and Programming

Assignment 1

Objectives:

Practice java programming with classes and objects, constructors, copy

constructors, enum type, array, ArrayList (generic version), overloaded

methods, passing by reference etc.


Task (7 marks)

In mathematics, a set is a collection of distinct elements and elements in a set are not

in order. Here are some examples of sets:

(a) A set of integers, e.g. integerSet = {3, 1, 4, 2}

(b) A set of fruits, e.g. fruitSet = {apple, orange, papaya}

(c) A set of characters, e.g. charSet = {‘A’, ‘m’, ‘&’}

We always enclose elements of sets inside a pair of { }.

Here are some other properties on sets:

(1) A set can be empty, i.e. no element. We call it empty set. In mathematics, we have

a special symbol to denote empty set. Convenient to our design later, we will use { }

to denote an empty set.

(2) When checking an element is inside a set. We call it “belong to”.

(3) If a set contains in another set, we call it subset. For example, {1, 2, 3} is a subset

of {2, 3, 4, 6, 1}. Therefore, empty set is a subset of every set.

(4) The cardinal number of a set is the number of elements in a set.

2

(5) The union of two sets A and B are all the elements belong to A and B, minus the

duplications. For example, if A = {1, 2, 3} and B = {2, 3, 4, 5}, the union is {1, 2,

3, 4, 5}.

(6) The intersection of two sets A and B are the common elements of A and B. Using

the example quoted in (5), the intersection is {2, 3}.

(7) The equality of two sets A and B are all the elements of A are in B and all the

elements of B are in A. Or alternatively, A is the subset of B and vice versa.

(8) The difference of two sets A and B, for example A – B, is those elements in B

should not be in A. For example, if A = {1, 2, 3} and B = {2, 3, 4, 5}, A – B = {1}

and B – A = {4, 5}.

We have all the required properties for our task.

In this assignment, our universal set is the 10 enumeration constants of numbers:

One, Two, Three, Four, Five, Six, Seven, Eight, Nine, Ten.

Data validation is not necessary in this design, when I want to add in a number, you can

assume that this is a valid number in the enumeration constants; i.e. we have restricted

ourselves in a subset of the above 10 numbers.

The best way to test your design is to develop an educational system to teach some

basic set theory. All the sets used in your design should be randomly generated by the

system i.e., the sizes (also known as cardinal number, from 0 to 10 elements) and the

elements.

Let us explore the following UML diagram for the whole task:

3

Let us look at each of the classes:

(a) Enumeration class NumberType

This is the universal set consists of 10 constants (One to Ten) that a subset is

constructed. Each enum constant has a few descriptions: Arabic numbers (1, 2, 3…),

French numbers, Malay / Bahasa, Spanish … Feel free to change to some other

languages, but I may not have decoder to interpret your mother tongue.

(b) Class Set

We use an array list to represent a set, which is an instance variable defined inside the

class. The normal set operations: belong to, contains, union, intersection, complement,

difference, subset, equality is some of the set’s operations. The toString method

returns a String of some enum constants (can be empty) enclosed between braces and

the getEnumFormat method returns its equivalent to one of the descriptions. You

will see in more detail later when work on one of the set operations.

4

You should use the default constructor to construct an empty set. Do some deep

copying in the copy constructor; you may need this constructor to perform some of the

subtasks.

Only the following methods can be used from the ArrayList:

add, get, contains, remove, and size.

You should fully explore the set operations designed by you once you have

implemented them. In the whole design, though you use an array list to denote a set,

you should not perform too many operations on array list, you should assume that

this list is “implicitly” defined

(c) Main class

We are now ready to present the whole system. You are required to design an

educational system to teach basic set theory. We propose the following interactions for

your system:

When you execute your program, the system will display the info for the universal set

(a call to displayNumberTypeInfo method, display once only) and followed by a

menu (the display of menu is repeated after an operation)

5

When you enter option 0, you will see the following interactions:

A set is generated, and a submenu is displayed. You can now try a few simple set

operations, add an element, belong to operation, display the cardinal number and a

display in enum format. Note that the sub-menu will be repeated after each operation.

Let us enter the option 1 in the submenu,

6

You can see in the above interactions, adding an element which is already inside the set,

the final set remains unchanged; otherwise, this distinct element is added to the set.

Let us explore option 2

For option 3, the system just simply displays the cardinal number:

7

For option = 4: the system invokes another format (to display one of the enum

descriptions) to display the corresponding set’s information:

Let us try option = 4 one more time; a different random format is displayed:

You can continue to stay in the submenu or enter 9 to go back to the main menu.

Let us choose 9 to go back to the main screen to test other operations.

Let us now explore each of the options in the main menu:

In the main menu, you choose option 1:

8

In option 1, the system randomly generates two sets and displays the union of these two

sets.

The same is done for option 2, but evaluate the intersection of the two sets:

Important to note, the main menu is always displayed.

In the following screen shot, you see the notation of an empty set.

9

For option 3, the subset operation:

For option 4, the difference of two sets:

Now, option 5, the complement of a set is done with the universal set. Our universal set

is the set of numbers. The following shows some of the interactions and displays:

10

Option 6 is the set equality. The following shows some of the possible interactions and

display:

Option 7 is for first distributive law:

Distributive Law states that, the sum and product remain the same value even when

the order of the elements is altered.

First Law: A ∪ (B ∩ C) = (A ∪ B) ∩ (A ∪ C)

We use symbol “I” for intersection in display:

Let us explain the 1st law

11

We first compute the expression on the left-hand side. To do this, you need to

compute (B ∩ C) and then A ∪ (B ∩ C).

To compute the expression on the right-hand side, you need to compute (A ∪ B),

(A ∪ C) and then (A ∪ B) ∩ (A ∪ C).

Option 8 is for second distributive law:

Second Law: A ∩ (B ∪ C) = (A ∩ B) ∪ (A ∩ C)

12

IMPORTANT TO NOTE

Put all your classes in a file called YourName_A1.java and make sure

that this file can be compiled and can be executed. Upload ONLY this file

to Moodle. ALL ZIP FILE SUBMISSION WILL BE REJECTED

NOTE THAT ALL CLASSES SHOULD NOT BE PUBLIC!!!!!

No re-submission will be allowed after grading.

In the above file, remember to put down your name and the following

declaration (some similar contents):

// Tell me if it is your own work, and whether you have passed your

// program to your friends etc

// and willing to accept whatever penalty given to you.

- Wrong file name -0.5 mark

- No declaration, no name etc -0.5 mark

- Failing to demo -1 mark

- Programs’ indentations and alignment of statements -0.5 mark


版权所有:编程辅导网 2021 All Rights Reserved 联系方式:QQ:99515681 微信:codinghelp 电子信箱:99515681@qq.com
免责声明:本站部分内容从网络整理而来,只供参考!如有版权问题可联系本站删除。 站长地图

python代写
微信客服:codinghelp