Question: Write an O ( n ) time program that prompts the user to enter a sequence of integers ending with 0 and finds the longest
Write an time program that prompts the user to enter a sequence of integers ending with and finds the longest subsequence with the same number.
Sample Run
Enter a series of numbers ending with : The longest same number sequence starts at index with values of Hint:
Introduce the variables:
int longestSequenceCount ;
int longestSequenceValue ;
int longestSequencelndex ;
Use these variables to track the longest sequence count, longest sequence value, and the starting index for tifie longest sequence. Write a loop to read the input and update these variables. You don't need to store integers into an array or array list for this program
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
