标签:dma bsp for exp ace lin main return name
#include "stdio.h"
#include "map"
#include "string"
using namespace std;
// global
map<string, int> calcRslt;
int BEST_SCORE;
// funcs declare
void readMapsRslt();
void globalInit();
void proc();
int main()
{
globalInit();
readMapsRslt();
proc();
return 0;
}
void globalInit()
{
}
void readMapsRslt()
{
}
void exploreFromHere(int x, int y)
{
}
void proc()
{
for (int i=1; i<=10; ++i) {
for (int j=1; j<=10; ++j) {
int timestamp_s = 1;
exploreFromHere(i, j);
int timestamp_e = 1;
int timeConsume = 1;
printf("尝试(%d,%d),耗时:%d", i, j, timeConsume);
}
}
}
标签:dma bsp for exp ace lin main return name
原文地址:http://www.cnblogs.com/fish7/p/6927009.html