-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathcountpaths.java
32 lines (26 loc) · 941 Bytes
/
countpaths.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
// Count all possible paths from top left to bottom right of a mXn matrix
// The problem is to count all the possible paths from top left to bottom right of a mXn matrix with the
// constraints that from each cell you can either move only to right or down
// Examples :
// Input : m = 2, n = 2;
// Output : 2
// There are two paths
// (0, 0) -> (0, 1) -> (1, 1)
// (0, 0) -> (1, 0) -> (1, 1)
// Input : m = 2, n = 3;
// Output : 3
// There are three paths
// (0, 0) -> (0, 1) -> (0, 2) -> (1, 2)
// (0, 0) -> (0, 1) -> (1, 1) -> (1, 2)
// (0, 0) -> (1, 0) -> (1, 1) -> (1, 2)
class Path{
static int numberOfPaths(int m, int n){
if(m == 1 || n == 1)
return 1;
// If diagonal movements are allowed then the last addition is required.
return numberOfPaths(m-1, n) + numberOfPaths(m, n-1);
}
public static void main(String args[]){
System.out.println(numberOfPaths(2, 3));
}
}