main.c

来自「它建立在最优原则的基础上,采用动态规划方法,可以优雅而高效地解决许多用贪心技术或」· C语言 代码 · 共 31 行

C
31
字号
/**
 * 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 + =
减小字号Ctrl + -
显示快捷键?