Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Time.h file //Measure time in Window // Define a Timer object t, use t.start() for beginning of the algorithm, t.stop() for the ending, and t.show()

image text in transcribed
Time.h file
//Measure time in Window
// Define a Timer object t, use t.start() for beginning of the algorithm, t.stop() for the ending, and t.show() for printing.
#ifndef TIMER_H
#define TIMER_H
#include
#include
#include
using namespace std;
class Timer
{
public:
Timer();
Timer(const std::string &label);
~Timer();
void start(void);
void stop(void);
void show(void);
private:
void reset(void);
string label;
long tps;
clock_t
start_time,
end_time;
double
usertime,
systemtime,
elapsedtime,
waittime;
};
#endif
// eof timer.h
// timer.cpp
Timer::Timer ()
{
label = "Process Timer";
reset();
}
Timer::Timer (const std::string &label)
{
Timer::label = label;
reset();
}
Timer::~Timer()
{
}
void
Timer::reset(void)
{
tps = CLOCKS_PER_SEC;
end_time = 0;
usertime = 0;
systemtime = 0;
elapsedtime = 0;
waittime = 0;
}
void
Timer::start(void)
{
start_time = clock();
}
void
Timer::show(void)
{
cout
}
void
Timer::stop(void)
{
end_time = clock();
elapsedtime = ((double)(end_time -
start_time )/(double)tps );
if (elapsedtime
{
elapsedtime = 0.001;
}
if ( waittime
{
waittime = 0.00;
}
}
// eof timer.cpp
Consider a network of streets laid out in a rectangular grid, for example In a northeast path from one point in the grid to another, one may walk only to the north (up) and to the east (right). For example, there are four northeast paths from A to B in the preceding grid Write a program that must use a recursive function to count the number of northeast paths from one point to another in a rectangular grid. Your program should prompt user to input the numbers of points to north and to east respectively, and then output the total number of paths. Note Here is a file timer.h which should be included in your program to measure time in Window or Unix (includes Mac OS and Linux) systems (use start0 for beginning of the algorithm, stop) for the ending, and show0 for printing). Below is an example: e #include "timer"h" using namespace std; void main) ( Timer t t.startO; // do some task t.stop() t.show): // this will print the elapsed time The computing times of this algorithm is very high, and the number of paths may be overflow, don't try input numbers even over 16. Please paste your output as comments at the bottom of your file

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Big Data Systems A 360-degree Approach

Authors: Jawwad ShamsiMuhammad Khojaye

1st Edition

0429531575, 9780429531576

More Books

Students also viewed these Databases questions

Question

What is the Definition for Third Normal Form?

Answered: 1 week ago

Question

Provide two examples of a One-To-Many relationship.

Answered: 1 week ago