Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Complete the Link class by writing methods described below. Do not use loops, or create any more methods (other than those specified), class or instance

image text in transcribed

Complete the Link class by writing methods described below. Do not use loops, or create any more methods (other than those specified), class or instance variables. public class Link { private Link next; /ull if this is the last link private int value; public Link(Link n, int v) { next = n; value = v; } } Do not use loops, or create any more methods (other than those specified), class or instance variables. 1. Write a recursive instance method count that takes no parameters and returns an int. Return the number of links that hold the value zero, with the exception that the last link in the list is not included in the count. For example, for the linked list, {(first) 5-0-3-1-00 (last)} it would return the value 2. 2. Write a recursive instance method is Sorted that takes a Link parameter and determines whether a linked list is sorted in descending order or not (return a boolean value). 3. Write a recursive instance method named findbad that takes no parameters and returns a reference to a Link. The result of calling findBad is a reference to the first link that has a value greater than the next link's value. If no such link exists return null. For example, for {576732} it would return a reference to the third link ("7")

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

Advances In Databases And Information Systems 22nd European Conference Adbis 2018 Budapest Hungary September 2 5 2018 Proceedings Lncs 11019

Authors: Andras Benczur ,Bernhard Thalheim ,Tomas Horvath

1st Edition

3319983970, 978-3319983974

More Books

Students also viewed these Databases questions