Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

1. Write a program to do selection sort on a linked list. a. Create a single linked list of at least 10 nodes. The values

1. Write a program to do selection sort on a linked list.

a. Create a single linked list of at least 10 nodes. The values in the nodes are not in sorted order of any kind

b. Now sort the linked list in descending order. Do not swap the values of nodes to sort, but instead unlink the actual nodes and re-link them so that the final list is sorted.

c. Do linked list traversal from head : first before sort , then a second time after sort. d. submit the code. Also submit screen shot of execution results.

2. We have done binary search in class. Write a RECURSIVE program to do tertiary search.

a. Create an array of at least 15 values in sorted order - descending. .

b do tertiary search to find an item. I,e in stead of dividing the list into 2 halves, divide it into 3 parts.

c. run the program to find an existing item in the list d. Second time run the program to try and find a non existing item in the list. e. submit code and screen shot of execution.

write it in Java

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

Databases On The Web Designing And Programming For Network Access

Authors: Patricia Ju

1st Edition

1558515100, 978-1558515109

More Books

Students also viewed these Databases questions

Question

What were the issues and solutions proposed by each team?

Answered: 1 week ago

Question

3. Who would the members be?

Answered: 1 week ago