Create Array ??

Create Array ??

Question in e-clips program:

Part 1. Array Implementation -Create a class called â??PhoneEntryâ?? which can be used to store the name and number of ONE client. -Create a class called â??MyArrayListâ?? which stores list of â??PhoneEntryâ?? objects. Use an array of size (MAXSIZE = 1000) to hold the list.

Notes: Add appropriate data fields to the class â??MyArrayListâ??, Add all of the required operations to the class â??MyArrayListâ??. For example, insert, linearSearch, binarySearch, insertionSort, heapSort, â?¦ .

-Create an appropriate interface that use the class â??MyArrayListâ?? to solve the phone directory problem defined above. Part 2. Linked List Implementation Create a class called â??MyLinkedListâ?? which stores list of â??PhoneEntryâ?? objects. Use a linked list (SLL or DLL) hold the list.

Notes: Use the class â??PhoneEntryâ?? which you have created in Part1. Add appropriate data fields to the class â??MyLinkedListâ??, Add all of the required operations to the class â??MyLinkedListâ??. For example, insert, linearSearch, binarySearch, insertionSort, heapSort, â?¦ .

-Create an appropriate interface that use the class â??MyLinkedListâ?? to solve the phone directory problem defined above. You can also use the same interface that has been used in Part 1, but this time with the class â??MyLinkedListâ??.

thanks loot everyOne >>>

View Answers









Related Tutorials/Questions & Answers:

Ads