these two codes and then answer these questions please: 1) Empirically, show the performance curve of the algorithm using time measurements 2) Using the basics of the theoretical analysis, write the complexity of its worst-case time.  1. Approach: Non recursive: //include necessary header files #include using namespace std; //main function int main() {     int days,buy_on_this_day ,sell_on_this_day;     //get number of days as input from user     cout<<"Enter number of days: ";

Computer Networking: A Top-Down Approach (7th Edition)
7th Edition
ISBN:9780133594140
Author:James Kurose, Keith Ross
Publisher:James Kurose, Keith Ross
Chapter1: Computer Networks And The Internet
Section: Chapter Questions
Problem R1RQ: What is the difference between a host and an end system? List several different types of end...
icon
Related questions
Question

Check these two codes and then answer these questions please:

1) Empirically, show the performance curve of the algorithm using time measurements

2) Using the basics of the theoretical analysis, write the complexity of its worst-case
time. 

1. Approach: Non recursive:

//include necessary header files
#include <iostream>
using namespace std;
//main function
int main()
{
    int days,buy_on_this_day ,sell_on_this_day;
    //get number of days as input from user
    cout<<"Enter number of days: ";
    cin>>days;
    int stock_price[days];
    for(int i=0;i<days;i++)
    {   cout<<"Enter stock_price";
        cin>>stock_price[i];
    }
    int i=0;
    for(int i=0;i<days-1;i++)
    {
        //comparing  current price with next day price and finding the  minima
        while(i<days-1 && stock_price[i+1]<=stock_price[i])
        i++;

        if(i==days-1)
        break;
        buy_on_this_day  =i++;

        while(i<days && stock_price[i]>= stock_price[i-1])
        i++;
        sell_on_this_day =i-1;
        cout<<buy_on_this_day <<" : index of the change before  we buy"<<endl;
        cout<<sell_on_this_day<<"  :index of the change before we sell"<<endl;
    }
    int profit;
    int maxim =0;
    int minSofar = stock_price[0];
    for(int i=0;i<days;i++)
    {  //calculating the min, profit and max profit
        minSofar = min(minSofar, stock_price[i]);// update min s
        profit= stock_price[i]-minSofar; // update profit
        maxim = max(maxim,profit);// update maximum profit
        
    }
    cout<<"Maximum Profit: "<<maxim;
}

 

//2.APproach:Recurrsive:

//include necessary header files
#include <iostream>
using namespace std;
//recurrsive function to find max profit
int maxPro(int stock_price[], int starting_day, int last_day)
{
    if (last_day <= starting_day)
        return 0;
    int maximum_profit = 0;
    for (int i = starting_day; i < last_day; i++)
     {
        for (int j = i + 1; j <= last_day; j++)
         {
            if (stock_price[j] > stock_price[i]) 
            {
                //update  profit
                int pro = (stock_price[j] - stock_price[i]) + maxPro(stock_price, starting_day, i - 1) + maxPro(stock_price, j + 1, last_day);
               //update maximum profit
                maximum_profit = max(maximum_profit, pro);
            }
        }
    }
    return maximum_profit;
}
//main function
int main()
{   //declare variables
    int days,buy_on_this_day ,sell_on_this_day ;
    //get days and stock price as input
    cout<<"Enter number of days: ";
    cin>>days;
    int stock_stock_price[days];
    for(int i=0;i<days;i++)
    {    cout<<"Enter stock price";
        cin>>stock_stock_price[i];
    }
    int ans =maxPro(stock_stock_price,0,days-1);
    cout<<"max profit: "<<ans

Expert Solution
steps

Step by step

Solved in 2 steps with 1 images

Blurred answer
Recommended textbooks for you
Computer Networking: A Top-Down Approach (7th Edi…
Computer Networking: A Top-Down Approach (7th Edi…
Computer Engineering
ISBN:
9780133594140
Author:
James Kurose, Keith Ross
Publisher:
PEARSON
Computer Organization and Design MIPS Edition, Fi…
Computer Organization and Design MIPS Edition, Fi…
Computer Engineering
ISBN:
9780124077263
Author:
David A. Patterson, John L. Hennessy
Publisher:
Elsevier Science
Network+ Guide to Networks (MindTap Course List)
Network+ Guide to Networks (MindTap Course List)
Computer Engineering
ISBN:
9781337569330
Author:
Jill West, Tamara Dean, Jean Andrews
Publisher:
Cengage Learning
Concepts of Database Management
Concepts of Database Management
Computer Engineering
ISBN:
9781337093422
Author:
Joy L. Starks, Philip J. Pratt, Mary Z. Last
Publisher:
Cengage Learning
Prelude to Programming
Prelude to Programming
Computer Engineering
ISBN:
9780133750423
Author:
VENIT, Stewart
Publisher:
Pearson Education
Sc Business Data Communications and Networking, T…
Sc Business Data Communications and Networking, T…
Computer Engineering
ISBN:
9781119368830
Author:
FITZGERALD
Publisher:
WILEY