首页 > 其他 > 详细

main

时间:2017-06-01 09:29:15      阅读:300      评论:0      收藏:0      [点我收藏+]

#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);
        }
    }    
}





main

原文:http://www.cnblogs.com/fish7/p/6927009.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!