Write a recursive function (compute1(n) ) that takes one parameter and implements the following recursive definition: compute1(n) = 5 compute1(n) = compute1(n-1) + n compute1(n) = compute1(n-2) + n if n is negative if 0 <= n<=10 if n>10 Write a program to test the function.

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

I need help with this C++ advanced data structure task. It needs to be in .cpp file and .h file. My attempt into placing into .cpp file and .h file with the main.cpp complied into an error. I have been using the free online complier https://www.onlinegdb.com/

Write a recursive function (compute1(n) ) that takes one parameter and implements the following
recursive definition:
compute1(n) = 5
compute1(n) = compute1(n-1) + n
compute1(n) = compute1 (n-2) + n
if n is negative
if 0 <=n <=10
if n>10
Write a program to test the function.
Transcribed Image Text:Write a recursive function (compute1(n) ) that takes one parameter and implements the following recursive definition: compute1(n) = 5 compute1(n) = compute1(n-1) + n compute1(n) = compute1 (n-2) + n if n is negative if 0 <=n <=10 if n>10 Write a program to test the function.
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 4 steps with 4 images

Blurred answer
Follow-up Questions
Read through expert solutions to related follow-up questions below.
Follow-up Question

I ran this in the free online complier (GDB) and I get the following results

main.cpp
Compute.h : Compute.cpp :
1 #include "Compute.h"
2- int compute1(int n){
if(n<0)
return 5;
else if(n>=0 && n<=10)
return compute1(n-1)+n;
else
3
4
7
8
return compute1(n-2)+n;
9 }
input
stderr
Compilation failed due to following error(s).
Compute.cpp:(.text+0x0): multiple definition of `compute1(int)'; /tmp/ccCEQrLg.o: main.cpp:(.text+0x0): first defined here
collect2: error: ld returned 1 exit status
Transcribed Image Text:main.cpp Compute.h : Compute.cpp : 1 #include "Compute.h" 2- int compute1(int n){ if(n<0) return 5; else if(n>=0 && n<=10) return compute1(n-1)+n; else 3 4 7 8 return compute1(n-2)+n; 9 } input stderr Compilation failed due to following error(s). Compute.cpp:(.text+0x0): multiple definition of `compute1(int)'; /tmp/ccCEQrLg.o: main.cpp:(.text+0x0): first defined here collect2: error: ld returned 1 exit status
Solution
Bartleby Expert
SEE SOLUTION
Knowledge Booster
Fibonacci algorithm
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