給定一個m*n的格子或棋盤,問從左上角走到右下角的走法總數(每次只能向右或向下移動一個方格邊長的距離。

好比一個2*3的矩陣,web 1 2 3svg 4 5 6spa 從1出發走到6,則可能的走法爲:1 2 3 6, 1 2 5 6, 1 4 5 6共有三種。code 這道題能夠當作是深度優先遍歷一顆樹。解法爲:xml public class MatrixTraversal { public static int getTraversal(int p, int q) { int n
相關文章
相關標籤/搜索