Fibonacci Sequence Coding using Memoization C PROGRAM HELP: - Create the mfib() function to calculate Fibonacci using memoization - Also create the initMemo() function to clear out memoization table(s) at the beginning of each mfib() run The output of the program will record the relative amount of time required from the start of each function calculation to the end. Note the speed difference between fib and mfib! Turn in your commented program and a screen shot of the execution run of the program. Do not be alarmed as the non-memoization Fibonacci calls take a long time to calculate, especially the higher values. Be patient. It should finish.
How do I complete the code to produce a similar output show in the att
Fibonacci Sequence Coding using Memoization C
- Create the mfib() function to calculate Fibonacci using memoization
- Also create the initMemo() function to clear out memoization table(s) at the beginning of each mfib() run
The output of the program will record the relative amount of time required from the start of each function calculation to the end.
Note the speed difference between fib and mfib!
Turn in your commented program and a screen shot of the execution run of the program.
Do not be alarmed as the non-memoization Fibonacci calls take a long time to calculate, especially the higher values.
Be patient. It should finish.
Given Code:
#include <stdio.h>
#include <stdlib.h>
#include <stdbool.h>
#include <string.h>
#include <time.h>
// max number of inputs
#define MAX_FIB 200
// result of call to fib function
unsigned long long result;
//loop variable
int i;
// ========================== MEMO DEFINITIONS ==========================
unsigned long long memo[MAX_FIB]; // array to hold computed data values
bool valid[MAX_FIB]; // array to hold validity of data
// make all entries in the memoization table invalid
void initMemo() {
// ***** ADD YOUR INITIALIZATION CODE HERE *****
// ***** ADD YOUR INITIALIZATION CODE HERE *****
// ***** ADD YOUR INITIALIZATION CODE HERE *****
// ***** ADD YOUR INITIALIZATION CODE HERE *****
// ***** ADD YOUR INITIALIZATION CODE HERE *****
return;
}
// ========================== TIME DEFINITIONS ==========================
// timer functions found in time.h
// time_t is time type
time_t startTime;
time_t stopTime;
// get current time in seconds from some magic date with
// t = time(NULL);
// or
// time(&t);
// where t is of type time_t
//
// get difference in secs between times (t1-t2) with
// d = difftime(t1, t2);
// where d is of type double
// ========================== NAIVE FIB ==========================
unsigned long long fib(int n) {
if (n < 1) {
return 0;
} else if (n == 1) {
return 1;
Trending now
This is a popular solution!
Step by step
Solved in 2 steps with 1 images