LeetCode Unique Paths

Posted 修修55

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LeetCode Unique Paths相关的知识,希望对你有一定的参考价值。

//给定m*n的矩阵,从左上角走到左下角需要多少步?

class Solution {
public:
    int uniquePaths(int m, int n) {
        
        vector<vector<int> > table(m, vector<int>(n, 1));  
        for (int i = 1; i < m; i++)  
        {  
            for (int j = 1; j < n; j++)  
            {  
                table[i][j] = table[i-1][j] + table[i][j-1];  
            }  
        }  
        return table[m-1][n-1];  
    }
    
};

 

以上是关于LeetCode Unique Paths的主要内容,如果未能解决你的问题,请参考以下文章

[leetcode] 62. Unique Paths

Leetcode 62. Unique Paths

LeetCode -- Unique Paths

[LeetCode]Unique Paths

[Leetcode Week12]Unique Paths

LeetCode: 63. Unique Paths II(Medium)