亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

C#中斐波那契數列的數學性質應用

c#
小樊
83
2024-09-10 10:48:19
欄目: 編程語言

在C#中,可以利用斐波那契數列的數學性質來解決一些問題

  1. 生成斐波那契數列:
using System;

class Program
{
    static void Main()
    {
        int n = 10; // 生成前10個斐波那契數
        for (int i = 0; i < n; i++)
        {
            Console.WriteLine(Fibonacci(i));
        }
    }

    static int Fibonacci(int n)
    {
        if (n <= 1)
            return n;
        else
            return Fibonacci(n - 1) + Fibonacci(n - 2);
    }
}
  1. 計算斐波那契數列的第n項(使用動態規劃):
using System;

class Program
{
    static void Main()
    {
        int n = 10; // 計算第10項
        Console.WriteLine(Fibonacci(n));
    }

    static int Fibonacci(int n)
    {
        int[] memo = new int[n + 1];
        memo[0] = 0;
        memo[1] = 1;

        for (int i = 2; i <= n; i++)
        {
            memo[i] = memo[i - 1] + memo[i - 2];
        }

        return memo[n];
    }
}
  1. 計算斐波那契數列的第n項(使用矩陣乘法):
using System;

class Program
{
    static void Main()
    {
        int n = 10; // 計算第10項
        Console.WriteLine(Fibonacci(n));
    }

    static long Fibonacci(int n)
    {
        if (n <= 1)
            return n;

        long[,] matrix = { { 1, 1 }, { 1, 0 } };
        matrix = MatrixPower(matrix, n - 1);
        return matrix[0, 0];
    }

    static long[,] MatrixPower(long[,] matrix, int n)
    {
        long[,] result = { { 1, 0 }, { 0, 1 } };

        while (n > 0)
        {
            if ((n & 1) == 1)
                result = MatrixMultiply(result, matrix);

            matrix = MatrixMultiply(matrix, matrix);
            n >>= 1;
        }

        return result;
    }

    static long[,] MatrixMultiply(long[,] a, long[,] b)
    {
        int rows = a.GetLength(0);
        int cols = b.GetLength(1);
        int inner = a.GetLength(1);

        long[,] result = new long[rows, cols];

        for (int i = 0; i< rows; i++)
        {
            for (int j = 0; j< cols; j++)
            {
                for (int k = 0; k< inner; k++)
                {
                    result[i, j] += a[i, k] * b[k, j];
                }
            }
        }

        return result;
    }
}

這些示例展示了如何在C#中利用斐波那契數列的數學性質來解決問題。你可以根據需要修改和擴展這些代碼。

0
枣庄市| 楚雄市| 万山特区| 滦南县| 德令哈市| 灵川县| 阿坝县| 崇信县| 涞源县| 益阳市| 彩票| 镇沅| 河池市| 富蕴县| 交城县| 阿图什市| 梅河口市| 平塘县| 巧家县| 新竹县| 西宁市| 桑日县| 麦盖提县| 华宁县| 若尔盖县| 龙山县| 石狮市| 无为县| 化隆| 濮阳市| 阿尔山市| 津南区| 定日县| 上犹县| 马鞍山市| 太保市| 抚松县| 马龙县| 石嘴山市| 电白县| 武川县|