Problem

Write a method called contains that accepts two arrays of integers a1 and a2 as parameters...

Write a method called contains that accepts two arrays of integers a1 and a2 as parameters and that returns a boolean value indicating whether or not the sequence of elements in a2 appears in a1 (true for yes, false for no). The sequence must appear consecutively and in the same order. For example, consider the following arrays:

int[ ] list1 = {1, 6, 2, 1, 4, 1, 2, 1, 8};int[ ] list2 = {1, 2, 1};

The call of contains(list1, list2) should return true because the sequence of values in list2 [1, 2, 1] is contained in listl starting at index 5. If list2 had stored the values [2, 1, 2], the call of contains(list1, list2) would return false. Any two lists with identical elements are considered to contain each other. Every array contains the empty array, and the empty array does not contain any arrays other than the empty array itself.

Step-by-Step Solution

Request Professional Solution

Request Solution!

We need at least 10 more requests to produce the solution.

0 / 10 have requested this problem solution

The more requests, the faster the answer.

Request! (Login Required)


All students who have requested the solution will be notified once they are available.
Add your Solution
Textbook Solutions and Answers Search
Solutions For Problems in Chapter 7
ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT