Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

IN C# Build your own ArrayList and a DOUBLY Linked List based on the labs Create one of each, load them up with at least

IN C#

Build your own ArrayList and a DOUBLY Linked List based on the labs

Create one of each, load them up with at least 5 Mobile Objects of each type (NPC and Vehicle), so 10 objects per collection (The same Mobs from A1).

Methods your collections need to support:

Note: you can make other methods you need as well, you need to develop a test case to show how each works and relevant edge cases.

ArrayList:

Create (this can create an empty list)

Grow (this should double the size of the array when it grows)

Append (assume that you can *only* append to add things)

Delete last element

PrintAllForward

PrintAllReverse

Deleteall

Doubly Linked List

This should have a head and a tail node, and nodes should have references to both next and previous.

Create

AddFront

AddLast

DeleteFirst

DeleteLast

PrintAllForward

PrintAllReverse

DeleteAll

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Oracle Autonomous Database In Enterprise Architecture

Authors: Bal Mukund Sharma, Krishnakumar KM, Rashmi Panda

1st Edition

1801072248, 978-1801072243

More Books

Students also viewed these Databases questions

Question

2. Compare the sales and service departments at Auto World.

Answered: 1 week ago