Design an algorithm to find the maximum profit. You may complete as many transactions as you like (i.e., buy one and sell one share of the stock multiple times).
Note: You may not engage in multiple transactions at the same time (i.e., you must sell the stock before you buy again).
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream> | |
#include <vector> | |
int maxProfit( const std::vector<unsigned int> &prices ) | |
{ | |
// Prevent against extreme case | |
if(prices.size() <= 1) | |
{ | |
return 0; | |
} | |
int profit = 0; | |
// Calculate the profit, loop through prices and | |
// keep on adding to profit when we are from | |
// velly to peak, as we need to buy and sell | |
for(int i =0 ; i< prices.size()-1 ; i++ ) | |
{ | |
if(prices[i] < prices[i+1]) | |
{ | |
profit += prices[i+1] - prices[i]; | |
} | |
} | |
return profit; | |
} | |
int main() | |
{ | |
std::vector<unsigned int> nums ={7,1,5,3,6,4}; | |
// should return 7 for this case | |
std::cout<< maxProfit(nums) << std::endl; | |
return 0; | |
} |
2 comments:
Could you please format your code better? In a way that's more readable? I don't know how to put. You know, the way it looks in an IDE.
updated.
Post a Comment