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

Unique Paths

时间:2015-01-29 19:42:21      阅读:206      评论:0      收藏:0      [点我收藏+]

标签:

题目:

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?

技术分享


我的解法:

(1)算法思想:

根据m,n值,设一个矩阵matrix[m-1][n-1],矩阵最上面一行和最左边一列的值都为1,其他位置元素的值等于相邻左边元素的值加上上边元素的值。这样,右下角元素的值就是可能有的路径数。

(2)代码如下:



Unique Paths

标签:

原文地址:http://blog.csdn.net/littlebob180/article/details/43273687

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