I do not ask someone to solve this for me, I just need to push a little, because I have no earthly idea on where to start. All I know is that I have to implement collections in this and have a look.
Write a longestSortedSequence method that returns the length of the longest sorted sequence in a list of integers. For example, if a variable called a list stores the following sequence of values:
[1, 3, 5, 2, 9, 7, -3, 0, 42, 308, 17]
then the call: list.longestSortedSequence () will return 4 because it is the length of the longest sorted sequence in this list (sequence -3, 0, 42, 308). If the list is empty, your method should return 0. Note that for a non-empty list, the method will always return a value of at least 1, because any single element is a sorted sequence.
Assume you are adding to the ArrayIntList class with following fields: public class ArrayIntList { private int[] elementData; private int size;
source share