贪心算法:122.买卖股票的最佳时机II (C++)

class Solution {

    public:

        int maxProfit(vector& prices) {    //容器中存的是传入的每日股价
            int result = 0;                     //定义变量,用于存放收益结果
            for( int i =1;i

你可能感兴趣的:(leetcode,贪心算法,数据结构)