码迷,mamicode.com
首页 >  
搜索关键字:dir    ( 11861个结果
hdu 1241 Oil Deposits (一次dfs搞定有某有)
1 #include 2 #include 3 #include 4 #include 5 using namespace std; 6 char map[105][105]; 7 8 int dir[8][2]={0, 1, 1, 0, -1, 0, 0, -1, 1, 1, 1, -1, -.....
分类:其他好文   时间:2014-08-14 01:14:27    阅读次数:266
_tsplitpath_s(分解路径) _tmakepath_s(创建路径)
函数原型:函数原型:errno_t _splitpath_s( const char * path, char * drive, size_t driveNumberOfElements, char * dir, size_t dirNumberOfElements, char * fname, s...
分类:其他好文   时间:2014-08-14 01:11:57    阅读次数:1304
C++ readdir、readdir_r函数
readdir, readdir_r - 读一个目录readdir函数: struct dirent *readdir(DIR*dirp);The data returned by readdir() may be overwritten by subsequent callsto readdi.....
分类:编程语言   时间:2014-08-13 22:06:57    阅读次数:386
android Ant批打包学习(二)---生成有签名且混淆的apk包
本篇文章预期目标:生成有签名apk文件详细步骤如下:1定义文件两个文件1.1名字:local.properties内容:SDK的路径(例如:sdk.dir=/Users/lincoln/Android/sdk)1.2名字:ant.properties内容:source.dir=srcout.dir=binproguard.config=proguard.cfg(添加混淆,必须保证proguard..
分类:移动开发   时间:2014-08-13 19:24:28    阅读次数:240
HDU1242 (BFS搜索中使用优先队列)
一道用到优先队列的BFS题目 #include #include #include #include #include #define N 201 using namespace std; char maze[N][N]; int a,b,anw; bool visit[N][N]; int dir[4][2]={{0,1},{1,0},{-1,0},{0,-1}}; int sx,s...
分类:其他好文   时间:2014-08-13 18:57:47    阅读次数:201
poj1088 滑雪(dfs、dp优化)
#include #include #include #include #include #include #include #include #define N 110 int a,b,step=0; int anw=0; int moun[N][N]; int dp[N][N]; int dir[4][2]={{1,0},{0,1},{-1,0},{0,-1}}; using ...
分类:其他好文   时间:2014-08-12 17:21:46    阅读次数:150
服务器意外重启导致storm报错的问题处理
解决方法cat /opt/storm-0.8.2/conf/storm.yaml中找到storm.local.dir设定的目录,备份supervisor和workers两个文件夹,#nohup supervise /service/storm/ &重启错误如下2014-06-17 12:27:05,...
分类:其他好文   时间:2014-08-12 16:38:54    阅读次数:198
常用的字符串文件文件夹操作
自己整理的一个类,需要的添加到工程中直接用就可以了。 1 /* ******* StrDirFile.h ********** 2 ********* 文件操作函数声明 ********** */ 3 4 /* author: autumoon */ 5 6 #ifndef _STR_DIR_F.....
分类:其他好文   时间:2014-08-12 12:51:24    阅读次数:232
PCIe 调试
ISE 生成PCIe核之后, 在ipcore_dir目录下会产生以下文件目录具体目录树如下: 1 myPCIe 2 │ s6_pcie_readme.txt 3 │ 4 ├─doc 5 │ s6_pcie_ds718.pdf 6 │ s6_pcie_ug654.pdf 7 │ ...
分类:其他好文   时间:2014-08-12 12:44:34    阅读次数:353
HTML的奇葩嵌套规则
1、块级元素   一般用来搭建网站架构、布局、承载内容……它包括以下这些标签:   address、blockquote、center、dir、div、dl、dt、dd、fieldset、form、h1~h6、hr、isindex、menu、noframes、noscript、ol、p、pre、table、ul...
分类:Web程序   时间:2014-08-11 21:33:13    阅读次数:385
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!