博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
leetcode算法题解(Java版)-4-动态规划(杨辉三角问题)
阅读量:6446 次
发布时间:2019-06-23

本文共 3258 字,大约阅读时间需要 10 分钟。

一、简单模拟

题目描述

Say you have an array for which the i th element is the price of a given stock on day i.

Design an algorithm to find the maximum profit. You may complete as many transactions as you like (ie, buy one and sell one share of the stock multiple times). However, you may not engage in multiple transactions at the same time (ie, you must sell the stock before you buy again).

思路

  • 肯定是低价买,高价卖出。但是有个限制就是在买进的时候,必须卖出手上的股票。
  • 最低价买,最高价的时候卖。在递增数列中,末项减首项=每项与后一项之差的和。这里不需要考虑交易次数最小,所以可以这么写:

代码

public class Solution {    public int maxProfit(int[] prices) {        int len=prices.length;        int maxPro=0;        for(int i=1;i
prices[i-1]){ maxPro+=prices[i]-prices[i-1]; } } return maxPro; }}

二、模拟的升级版

题目描述

Say you have an array for which the i th element is the price of a given stock on day i.

If you were only permitted to complete at most one transaction (ie, buy one and sell one share of the stock), design an algorithm to find the maximum profit.

思路

  • 这题跟上一题不一样的地方在于,是能买卖一次了。
  • 可以先固定局部最小值,后面不断维护跟新局部最大值和局部最小值的差,直到最后找到结果。
  • 做了两道这种最大值和最小值差的问题,总结一下,因为最大值最小值都是在数组中变化的,所以可以考虑先固定出局部的最小值

代码

import java.lang.Math;public class Solution {    public int maxProfit(int[] prices) {        int len=prices.length;        if(prices==null||len==0){        return 0;        }        int min=prices[0];        int maxPro=0;        for(int i=1;i

三、动态规划

题目描述

Given a triangle, find the minimum path sum from top to bottom. Each step you may move to adjacent numbers on the row below.
For example, given the following triangle

[     [2],    [3,4],   [6,5,7],  [4,1,8,3]]

The minimum path sum from top to bottom is11(i.e., 2 + 3 + 5 + 1 = 11).

Note:

Bonus point if you are able to do this using only O(n) extra space, where n is the total number of rows in the triangle.

思路

  • 经典的三角数组,动态规划问题
  • 详细的请看代码。这里没有开辟新的存储,只是在最后一行上跟新维护每一行的最优解,最后最后一行的第一个数即为所求。
  • 语法点:import java.util.ArrayList;ArrayList.get(index);ArrayList.set(index,value);import java.lang.Math;Math.min(value1,value2);

代码

import java.lang.Math;import java.util.ArrayList;public class Solution {    public int minimumTotal(ArrayList
> triangle) { int len=triangle.size(); if(len==0){ return 0; } if(len==1){ int min=triangle.get(0).get(0); for(int i=0;i
triangle.get(0).get(i)){ min=triangle.get(0).get(i); } } return min; } for(int i=len-2;i>=0;i--){ for(int j=0;j

四、动态规划(杨辉三角)

题目描述

Given an index k, return the k th row of the Pascal's triangle.

For example, given k = 3,
Return[1,3,3,1].
Note:
Could you optimize your algorithm to use only O(k) extra space?

思路

  • 又是个动态规划问题,一开始想复杂了,或者说是没有按计算机思维来思考:我在算C{n_m},就是在算组合数,想通过组合数来打印出数组。
  • 其实是个动态规划,当前行的值是依赖于上一行的。题目要求用O(n)空间来求解,那就设置了一个动态数组,每次从后往前刷新这个数组,即为所求。

代码

import java.util.ArrayList;public class Solution {    public ArrayList
getRow(int rowIndex) { ArrayList
res=new ArrayList<>(); res.add(1); for(int i=0;i
0;j--){//注意要从后往前刷新,因为用的是一个动态数组,防止仍有用的数据被新值覆盖 res.set(j,res.get(j)+res.get(j- 1)); } res.add(1); } return res; }}

转载地址:http://nivwo.baihongyu.com/

你可能感兴趣的文章
王健林:万达体育和传奇影业都要开展资本运作 今年要出成绩
查看>>
何小鹏:运营是智能汽车生态的核心
查看>>
中国黄金协会:中国黄金消费连续6年全球居首
查看>>
春节临近 重庆汽车站迎客流高峰
查看>>
还敢“眉”来眼去吗?戴维斯被联盟罚款5万美元
查看>>
委内瑞拉将与美国谈判建立驻对方国利益代表处
查看>>
黄河河道新乡部分段非法挖沙猖獗 河道遭到破坏
查看>>
贵州营商环境日趋改善 整治“组合拳”效果显著
查看>>
知识点分享(2)更深入理解 Python 中的迭代
查看>>
网易星球增加网易云音乐任务,将用户流量变现是正确的做法
查看>>
最强面试题汇总:BAT最新前端题出炉,碰到技术HR这些题必考!
查看>>
我有个大胆的想法,用风格迁移玩《绝地》版的《堡垒之夜》
查看>>
自定义View之IndexView进度条(二)
查看>>
牢补基础,话说Service那点事
查看>>
【React源码解读】- 组件的实现
查看>>
模块化日常:CocoaPods 1.4.0 真好用(并不)
查看>>
微信小程序教学第三章第四节(含视频):小程序中级实战教程:下拉更新、分享、阅读标识...
查看>>
jquery的html()方法是个坑
查看>>
使用 webpack 4 和 Babel 7 配置 Vue.js 工程模板
查看>>
Vue + Mint-ui 封装滚轮选择器
查看>>