码迷,mamicode.com
首页 > 其他好文 > 详细

LeetCode Unique Paths

时间:2017-03-07 11:34:08      阅读:163      评论:0      收藏:0      [点我收藏+]

标签:int   tor   多少   etc   public   blog   矩阵   需要   class   

//给定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

标签:int   tor   多少   etc   public   blog   矩阵   需要   class   

原文地址:http://www.cnblogs.com/xiuxiu55/p/6513831.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!