SOLVE USING JAVA It is required to develop an application in Java to represent Set as a data structure using Java built-in class ArrayList. (A) Write a class called Set to represent a set as an ArrayList and implement various set operations by using methods of class ArrayList. Assume that the elements of the set are integers. This class will have the following instance variables: (a) an ArrayList object called list of type Integer, (b) length: the actual number of elements in the list. This class will have the following methods: (1) Constructor without any parameter (default constructor), which uses a default value of 10 as capacity, creates ArrayList object list and initializes length to 0. (2) Constructor with parameter cap for capacity of the list. Create ArrayList object list of capacity equal to parameter cap and initialize length to 0. (3) Instance method getLength, that returns length

Programming Logic & Design Comprehensive
9th Edition
ISBN:9781337669405
Author:FARRELL
Publisher:FARRELL
Chapter10: Object-oriented Programming
Section: Chapter Questions
Problem 20RQ
icon
Related questions
Question
SOLVE USING JAVA It is required to develop an application in Java to represent Set as a data structure using Java built-in class ArrayList. (A) Write a class called Set to represent a set as an ArrayList and implement various set operations by using methods of class ArrayList. Assume that the elements of the set are integers. This class will have the following instance variables: (a) an ArrayList object called list of type Integer, (b) length: the actual number of elements in the list. This class will have the following methods: (1) Constructor without any parameter (default constructor), which uses a default value of 10 as capacity, creates ArrayList object list and initializes length to 0. (2) Constructor with parameter cap for capacity of the list. Create ArrayList object list of capacity equal to parameter cap and initialize length to 0. (3) Instance method getLength, that returns length. (4) Instance method isEmpty to determine whether the set is empty or not. (5) Instance method addElement that accepts a parameter element of type int. It will insert the element in the list at the end and also increment length by one. (6) Instance method isMember that accepts a parameter element of type int. If element exists in the list, it will return true, else it will return false. (7) Instance method subSet that accepts a parameter aSet of type Set. If aSet is a subset of “this object”, it will return true, else it will return false. Ex: Let A and B be two sets; A = {7, 4, 20, 15, 12}, B = {12, 15}. As all elements of B are contained in A, therefore, B is a subset of A. (8) Instance method isEqual that accepts a parameter aSet of type Set. The method will return true, if aSet is equal to “this object”, else it will return false. Two sets are equal, if they contain the same elements in any order. Ex: Let A and B be two sets; A = {7, 4, 20, 15, 12}, B = {4, 7, 12, 15, 20}. As sets A and B contain same elements, but in different order, therefore, they are equal. (9) Instance method union having a parameter aSet of type Set. The method finds the union of aSet with “this object” and returns the result as an object of type Set. Ex: Let A = {10, 4, 20, 15, 12, 18}, B = {8, 10, 25, 15, 20}, C = A È B = {10, 4, 20, 15, 12, 18, 8, 25} (10) Instance method intersection having a parameter aSet of type Set. The method finds the intersection of aSet with “this object” and returns the result as an object of type Set. Ex: Let A = {10, 4, 20, 15, 12, 18}, B = {8, 10, 25, 15, 20}, C = A Ç B = {10, 20, 15}. (11) Instance method called print() to print all the elements of the set. (B) Write a class called SetApplication having only main method. Create objects of class type Set using different constructors and call methods of class Set to test all functionalities of class Set.
(8) İnstance method isEqual that accepts a
parameter aSet of type Set. The method will
return true,
if aset is equal to "this object", else it
will return false. Two sets are equal, if they contain
the same elements in any order.
Ex: Let A and B be two sets;
A = {7,4, 20, 15, 12}, B = {4, 7, 12, 15, 20}. As sets
A and B contain same elements, but in different
order, therefore, they are equal.
(9) Instance method union having a parameter
aSet of type Set. The method finds the union of
aSet with "this object" and returns the result as an
object of type Set.
Ex: Let A 3D {10, 4, 20, 15, 12, 18}, В %3 {8, 10, 25,
15, 20},
C = A ÈB = {10, 4, 20, 15, 12, 18, 8, 25}
(10) Instance method intersection having a
parameter aSet of type Set. The method finds the
intersection of aSet with "this object" and returns
the result as an object of type Set.
Ex: Let A %3D {10, 4, 20, 15, 12, 18}, В 3 {8, 10, 25,
15, 20},
С 3АҪВ3 {10, 20, 15}.
(11) Instance method called print() to print all the
elements of the set.
(B) Write a class called SetApplication having
only main method. Create objects of class type Set
using different constructors and call methods of class
Set to test all functionalities of class Set.
2
Transcribed Image Text:(8) İnstance method isEqual that accepts a parameter aSet of type Set. The method will return true, if aset is equal to "this object", else it will return false. Two sets are equal, if they contain the same elements in any order. Ex: Let A and B be two sets; A = {7,4, 20, 15, 12}, B = {4, 7, 12, 15, 20}. As sets A and B contain same elements, but in different order, therefore, they are equal. (9) Instance method union having a parameter aSet of type Set. The method finds the union of aSet with "this object" and returns the result as an object of type Set. Ex: Let A 3D {10, 4, 20, 15, 12, 18}, В %3 {8, 10, 25, 15, 20}, C = A ÈB = {10, 4, 20, 15, 12, 18, 8, 25} (10) Instance method intersection having a parameter aSet of type Set. The method finds the intersection of aSet with "this object" and returns the result as an object of type Set. Ex: Let A %3D {10, 4, 20, 15, 12, 18}, В 3 {8, 10, 25, 15, 20}, С 3АҪВ3 {10, 20, 15}. (11) Instance method called print() to print all the elements of the set. (B) Write a class called SetApplication having only main method. Create objects of class type Set using different constructors and call methods of class Set to test all functionalities of class Set. 2
It is required to develop an application in Java to
represent Set as a data structure using Java built-in
class ArrayList.
(A) Write a class called Set to represent a set as an
ArrayList and implement various set operations
by using methods of class ArrayList. Assume
that the elements of the set are integers.
This class will have the following instance variables:
(a) an ArrayList object called list of type
Integer, (b) length: the actual number of
elements in the list.
This class will have the following methods:
(1) Constructor without any parameter (default
constructor), which uses a default value of 10 as
capacity, creates ArrayList object list
and initializes length to 0.
(2) Constructor with parameter cap for capacity
of the list. Create ArrayList object list of
capacity equal to parameter cap and initialize
length to 0.
(3) Instance method getLength, that returns
length.
(4) Instance method isEmpty to determine whether
the set is empty or not.
(5) Instance method addElement that accepts a
parameter element of type int. It will insert the
element in the list at the end and also increment
length by one.
(6) Instance method isMember that accepts a
parameter element of type int. If element
exists in the 1ist, it will return true, else it will
return false.
(7) Instance method subSet that accepts a
parameter aSet of type Set. If aSet is a subset of
"this object", it will return true, else it will return
false.
Ex: Let A and B be two sets;
A = {7,4, 20, 15, 12}, B = {12, 15}. As all elements
of B are contained in A, therefore, B is a subset of A.
Transcribed Image Text:It is required to develop an application in Java to represent Set as a data structure using Java built-in class ArrayList. (A) Write a class called Set to represent a set as an ArrayList and implement various set operations by using methods of class ArrayList. Assume that the elements of the set are integers. This class will have the following instance variables: (a) an ArrayList object called list of type Integer, (b) length: the actual number of elements in the list. This class will have the following methods: (1) Constructor without any parameter (default constructor), which uses a default value of 10 as capacity, creates ArrayList object list and initializes length to 0. (2) Constructor with parameter cap for capacity of the list. Create ArrayList object list of capacity equal to parameter cap and initialize length to 0. (3) Instance method getLength, that returns length. (4) Instance method isEmpty to determine whether the set is empty or not. (5) Instance method addElement that accepts a parameter element of type int. It will insert the element in the list at the end and also increment length by one. (6) Instance method isMember that accepts a parameter element of type int. If element exists in the 1ist, it will return true, else it will return false. (7) Instance method subSet that accepts a parameter aSet of type Set. If aSet is a subset of "this object", it will return true, else it will return false. Ex: Let A and B be two sets; A = {7,4, 20, 15, 12}, B = {12, 15}. As all elements of B are contained in A, therefore, B is a subset of A.
Expert Solution
steps

Step by step

Solved in 4 steps with 1 images

Blurred answer
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
Programming Logic & Design Comprehensive
Programming Logic & Design Comprehensive
Computer Science
ISBN:
9781337669405
Author:
FARRELL
Publisher:
Cengage