You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
114 lines
2.0 KiB
114 lines
2.0 KiB
package class26;
|
|
|
|
public class Code03_ZeroLeftOneStringNumber {
|
|
|
|
public static int getNum1(int n) {
|
|
if (n < 1) {
|
|
return 0;
|
|
}
|
|
return process(1, n);
|
|
}
|
|
|
|
public static int process(int i, int n) {
|
|
if (i == n - 1) {
|
|
return 2;
|
|
}
|
|
if (i == n) {
|
|
return 1;
|
|
}
|
|
return process(i + 1, n) + process(i + 2, n);
|
|
}
|
|
|
|
public static int getNum2(int n) {
|
|
if (n < 1) {
|
|
return 0;
|
|
}
|
|
if (n == 1) {
|
|
return 1;
|
|
}
|
|
int pre = 1;
|
|
int cur = 1;
|
|
int tmp = 0;
|
|
for (int i = 2; i < n + 1; i++) {
|
|
tmp = cur;
|
|
cur += pre;
|
|
pre = tmp;
|
|
}
|
|
return cur;
|
|
}
|
|
|
|
public static int getNum3(int n) {
|
|
if (n < 1) {
|
|
return 0;
|
|
}
|
|
if (n == 1 || n == 2) {
|
|
return n;
|
|
}
|
|
int[][] base = { { 1, 1 }, { 1, 0 } };
|
|
int[][] res = matrixPower(base, n - 2);
|
|
return 2 * res[0][0] + res[1][0];
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public static int fi(int n) {
|
|
if (n < 1) {
|
|
return 0;
|
|
}
|
|
if (n == 1 || n == 2) {
|
|
return 1;
|
|
}
|
|
int[][] base = { { 1, 1 },
|
|
{ 1, 0 } };
|
|
int[][] res = matrixPower(base, n - 2);
|
|
return res[0][0] + res[1][0];
|
|
}
|
|
|
|
|
|
|
|
|
|
public static int[][] matrixPower(int[][] m, int p) {
|
|
int[][] res = new int[m.length][m[0].length];
|
|
for (int i = 0; i < res.length; i++) {
|
|
res[i][i] = 1;
|
|
}
|
|
int[][] tmp = m;
|
|
for (; p != 0; p >>= 1) {
|
|
if ((p & 1) != 0) {
|
|
res = product(res, tmp);
|
|
}
|
|
tmp = product(tmp, tmp);
|
|
}
|
|
return res;
|
|
}
|
|
|
|
// 两个矩阵乘完之后的结果返回
|
|
public static int[][] product(int[][] a, int[][] b) {
|
|
int n = a.length;
|
|
int m = b[0].length;
|
|
int k = a[0].length; // a的列数同时也是b的行数
|
|
int[][] ans = new int[n][m];
|
|
for(int i = 0 ; i < n; i++) {
|
|
for(int j = 0 ; j < m;j++) {
|
|
for(int c = 0; c < k; c++) {
|
|
ans[i][j] += a[i][c] * b[c][j];
|
|
}
|
|
}
|
|
}
|
|
return ans;
|
|
}
|
|
|
|
public static void main(String[] args) {
|
|
for (int i = 0; i != 20; i++) {
|
|
System.out.println(getNum1(i));
|
|
System.out.println(getNum2(i));
|
|
System.out.println(getNum3(i));
|
|
System.out.println("===================");
|
|
}
|
|
|
|
}
|
|
}
|