码迷,mamicode.com
首页 >  
搜索关键字:const    ( 26295个结果
HDOJ 3790 双权值Dijkstra
1 #include 2 #include 3 #include 4 #include 5 using namespace std; 6 7 const int INF = 1000000; 8 const int MAXSIZE = 1005; 9 10 int map[MAXSIZE...
分类:其他好文   时间:2014-04-28 09:34:15    阅读次数:558
gpio_request 原形代码
http://blog.csdn.net/maopig/article/details/7428561其原型为int gpio_request(unsigned gpio, const char *label)先说说其参数,gpio则为你要申请的哪一个管脚,label则是为其取一个名字。其具体实现如...
分类:其他好文   时间:2014-04-28 08:00:08    阅读次数:652
HDOJ 1217 Floyed Template
1 #include 2 #include 3 #include 4 #include 5 #include 6 using namespace std; 7 8 mapname; 9 const int INF = 1000000;10 const int MAXSIZE = 1005...
分类:其他好文   时间:2014-04-27 21:03:01    阅读次数:552
cocos2d-x3.0 常用画图方法
HelloWorldScene.h 添加如下代码: protected: void onDraw(const kmMat4 &transform, bool transformUpdated); CustomCommand _customCommand; HelloWorldScene.cpp void HelloWorld::draw(cocos2d::Rende...
分类:其他好文   时间:2014-04-27 20:38:07    阅读次数:679
UVA 1529 - Clock(数论)
题目链接:1529 - Clock 题意:给定两个时刻,求时针和分针相遇次数。 思路:先把转一圈会相遇的时刻记录下来,这些时刻肯定是固定的,然后由给定的两个时刻a,b,求出12点到a相遇次数c1,12点到b相遇次数c2,ans = c2 - c1 代码: #include #include const double esp = 1e-6; int h1, m1, h2, m2; do...
分类:其他好文   时间:2014-04-27 19:28:46    阅读次数:352
26295条   上一页 1 ... 2628 2629 2630
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!