⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 main.c

📁 动态规划+备忘录法 求最佳矩阵连乘,觉得不错
💻 C
字号:
/**
 * File    : main.c
 * Author  : Wind
 * Email   : zealotwjr@163.com
 * Date    : 2005-10-14
 * Purpose : 
 * */
 
 
#include <stdio.h>
#include <stdlib.h>

#include "../head/Global.h"
#include "../test/DynamicProgrammingTest.h"

void dynamicTests(){
    testInitMatrix();
    testMatrixMultiply();
    testMatrixChainOrder();
    testMatrixChainMultiply();
}

int main(){
    dynamicTests();
    system("pause");
    return 0;
}



⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -