The given data is arr = {1, 10, 30, 15, 5, 8}. Analyze the code given in Figure 1 line by line based on this data to calculate the time complexity. Next, define what is the time complexity to search the data? Provide your answer in Table 1. int search (int arr[], int n, int x) (int i; for (i = 0; i

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter15: Recursion
Section: Chapter Questions
Problem 7SA
icon
Related questions
Question
(d) The given data is arr = {1, 10, 30, 15, 5, 8}. Analyze the code given in Figure 1 line by
line based on this data to calculate the time complexity. Next, define what is the time
complexity to search the data? Provide your answer in Table 1.
int search (int arr[], int n, int x)
(int i;
for (i = 0; i<n; i++)
}
{
if (arr[i] == X)
return i;
}
return -1;
int main()
{
int arr[] = { 1, 10, 30, 15, 5, 8 };
int x = 15;
int b,i;
int n = sizeof (arr) / sizeof (arr [0]);
printf("%d is present at index %d", x, search (arr, n, x));
b=search (arr, n, x);
for (i=1;i<=b; i=i+2)
{
printf("\n Congratulation");
}
getchar();
return 0;
}
Line
1
2
3
:
Total Steps:
Time Complexity:
Figure 1
Table 1
Execution Step
Transcribed Image Text:(d) The given data is arr = {1, 10, 30, 15, 5, 8}. Analyze the code given in Figure 1 line by line based on this data to calculate the time complexity. Next, define what is the time complexity to search the data? Provide your answer in Table 1. int search (int arr[], int n, int x) (int i; for (i = 0; i<n; i++) } { if (arr[i] == X) return i; } return -1; int main() { int arr[] = { 1, 10, 30, 15, 5, 8 }; int x = 15; int b,i; int n = sizeof (arr) / sizeof (arr [0]); printf("%d is present at index %d", x, search (arr, n, x)); b=search (arr, n, x); for (i=1;i<=b; i=i+2) { printf("\n Congratulation"); } getchar(); return 0; } Line 1 2 3 : Total Steps: Time Complexity: Figure 1 Table 1 Execution Step
Expert Solution
steps

Step by step

Solved in 2 steps

Blurred answer
Knowledge Booster
Problems on numbers
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