中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

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
南乐县| 翁源县| 湟中县| 渭南市| 宁都县| 宜昌市| 新巴尔虎左旗| 都江堰市| 屯门区| 东莞市| 蛟河市| 额济纳旗| 阿克| 张家口市| 合阳县| 建昌县| 兴和县| 沾化县| 湛江市| 宜宾县| 姚安县| 米易县| 娄底市| 珠海市| 广德县| 静乐县| 怀来县| 罗甸县| 团风县| 平陆县| 三穗县| 绥滨县| 鹤庆县| 滕州市| 新建县| 米林县| 德州市| 龙州县| 北川| 开原市| 长沙市|