Write a function that gets an array of ints of length n, and a number k, and returns the longest subsequence of consecutive k’s in the array. For example - On input ([1, 1, 3, 3, 3, 1, 5, 1], 1), the function returns 3 - On input ([1, 3, 3, 2, 3, 3, 3, 3], 3), the function returns 4 - On input ([3, 5, 2, 5, 2, 5, 5], 3), the function returns 2 - On input ([1, 2, 3, 3, 3, 3], 5), the function returns 0 // returns the length of the longest subsequence // of consecutive k’s in the array int longest_seq(const int* ar, int n, int k);   test for the function: void test_q1() { inta1[] = {1, 1, 3, 3, 3, 1, 5, 1}; if (longest_seq(a1, 8, 1) == 2) printf("Q1-1 ok\n"); else printf("Q1-1 ERROR\n"); inta2[] = {1,3,3,2,3,3,3,3}; if (longest_seq(a2, 8, 3) == 4) printf("Q1-2 ok\n"); else printf("Q1-2 ERROR\n"); }

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter8: Arrays And Strings
Section: Chapter Questions
Problem 24PE
icon
Related questions
Question

Write a function that gets an array of ints of length n, and a number k, and returns the longest subsequence of consecutive k’s in the array. For example

- On input ([1, 1, 3, 3, 3, 1, 5, 1], 1), the function returns 3

- On input ([1, 3, 3, 2, 3, 3, 3, 3], 3), the function returns 4

- On input ([3, 5, 2, 5, 2, 5, 5], 3), the function returns 2

- On input ([1, 2, 3, 3, 3, 3], 5), the function returns 0

// returns the length of the longest subsequence

// of consecutive k’s in the array

int longest_seq(const int* ar, int n, int k);

 

test for the function:

void test_q1() {
inta1[] = {1, 1, 3, 3, 3, 1, 5, 1};
if (longest_seq(a1, 8, 1) == 2)
printf("Q1-1 ok\n");
else
printf("Q1-1 ERROR\n");

inta2[] = {1,3,3,2,3,3,3,3};
if (longest_seq(a2, 8, 3) == 4)
printf("Q1-2 ok\n");
else
printf("Q1-2 ERROR\n");
}
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 2 steps with 1 images

Blurred answer
Knowledge Booster
Arrays
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning