📄 main.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 + -