2023每日刷题(十一)
Leetcode—17.电话号码的字母组合
枚举法题解
参考自灵茶山艾府
枚举法实现代码
int maxProfit(int* prices, int pricesSize){
int i;
int max = 0;
int minPrice = prices[0];
for(i = 1; i < pricesSize; i++) {
int tmp = prices[i] - minPrice;
max = max > tmp ? max : tmp;
minPrice = minPrice < prices[i] ? minPrice : prices[i];
}
return max;
}
运行结果
之后我会持续更新,如果喜欢我的文章,请记得一键三连哦,点赞关注收藏,你的每一个赞每一份关注每一次收藏都将是我前进路上的无限动力 !!!↖(▔▽▔)↗感谢支持!