Question: Hi, please provide the completed c# files for task 1.1 of SIT 221 SIT221 Data Structures and Algorithms Trimester 2, 2020 Practical Task 1.1 (Pass

Hi, please provide the completed c# files for task 1.1 of SIT 221

Hi, please provide the completed c# files for task 1.1 of SIT

SIT221 Data Structures and Algorithms Trimester 2, 2020 Practical Task 1.1 (Pass Task) Submission deadline: 11:59 pm Sunday, July 26\"1 Discussion deadline: 11:59 pm Sunday, August 16th Task Objective In this task you will use the programming skills acquired during prior units (namely SIT232 Object-Oriented Development) to complete an already partially implemented generic data structure called a Vector. Background A Vector is a simple data structure used to store any number of elements in a single dimension. Essentially, Vectors are like arrays except with a few differences. Firstly, they are not a built-in language construct and instead need to be directly implemented. Secondly, unlike array's fixed size, a Vector can be resized during run time. The Vector class can perform several basic operations such as accessing, recording, and deleting elements from the data collection. In this task, you are going to complete an implementation of a Vector class. The class being created will use a generic implementation. This means that it will be parameterised over types, which allows the Vector to store elements with a variety of types rather than a single one. Students that have completed SIT232 Object- Oriented Development should be familiar with Generics. As revision a generic class is created using a generic type parameter list within angle brackets ( ). For example, the following code defines a class that stores a single element of any type

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!