博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Unique Paths Leetcode
阅读量:5261 次
发布时间:2019-06-14

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

A robot is located at the top-left corner of a m x n grid (marked 'Start' in the diagram below).

The robot can only move either down or right at any point in time. The robot is trying to reach the bottom-right corner of the grid (marked 'Finish' in the diagram below).

How many possible unique paths are there?

Above is a 3 x 7 grid. How many possible unique paths are there?

Note: m and n will be at most 100.

这道题感觉是个经典的dp题目。dp就是建一个二维数组然后看看每个步骤结果应该是怎样的。

public class Solution {    public int uniquePaths(int m, int n) {        if (m <= 0 || n <= 0) {            return 0;        }        // if (m == 1 || n == 1) {        //     return 1;        // }        int[][] path = new int[m][n];        for (int i = 0; i < m; i++) {            for (int j = 0; j < n; j++) {                if (i == 0 && j != 0) {                    path[i][j] = 1;                } else if (i != 0 && j == 0) {                    path[i][j] = 1;                } else if (i != 0 && j != 0) {                    path[i][j] = path[i - 1][j] + path[i][j - 1];                } else {                    path[i][j] = 1;                }            }        }        return path[m - 1][n - 1];    }}

这道题需要注意的是有的时候数组会变成一维的,这个时候总数只有一个,可以通过一开始判断返回,也可以把path[0][0]赋值为1来包含长度为2,维度为1的情况。

这道题还有数学解法。。。在此先不深究了,到时候有时间再回顾吧。。。

转载于:https://www.cnblogs.com/aprilyang/p/6488290.html

你可能感兴趣的文章
Spring Boot 学习(2)
查看>>
KeepAlive详解
查看>>
字符串处理
查看>>
python爬虫之路——使用逆行工程抓取异步加载网页数据
查看>>
c/c++ 贪吃蛇控制台版
查看>>
Oracle PL/SQL Developer集成TFS进行团队脚本文件版本管理
查看>>
带你吃透RTMP
查看>>
MD5加密(java和c#)
查看>>
ros ap 的无线中继
查看>>
struts1利用jxl将xml表格数据分类导入数据库不同的表中
查看>>
c# 复习
查看>>
Shell获取文件的文件名和扩展名的例子
查看>>
Joda-Time 简介
查看>>
workerman——报错
查看>>
【Linux】Centos6.8下一键安装Lnmp/Lamp环境
查看>>
[洛谷P1120] 小木棍 [数据加强版]
查看>>
hdu5322 Hope
查看>>
纯Java增删改查
查看>>
不要拿自己的性格去挑战别人的底线
查看>>
Java的日期格式化常用方法
查看>>