码迷,mamicode.com
首页 >  
搜索关键字:error    ( 30038个结果
数据结构上机4队列-杨辉三角1
#include #include #define OK 1#define OVERFLOW -1#define ERROR 0typedef int Status, QElemType;typedef struct { QElemType *base; int front; int rear...
分类:其他好文   时间:2015-12-17 00:30:49    阅读次数:246
数据结构上机1顺序表
#include #include #define OK 1#define OVERFLOW -1#define ERROR 0#define LIST_INIT_SIZE 100#define LISTINCREMENT 10type...
分类:其他好文   时间:2015-12-17 00:28:34    阅读次数:240
数据结构上机5二叉树遍历
写的不标准,凑活着。( ̄o ̄) . z Zbitree.h#define OK 1#define ERROR 0#define OVERFLOW -2#define STACK_INIT_SIZE 100#define STACKINCREMENT 10typedef ...
分类:其他好文   时间:2015-12-17 00:23:29    阅读次数:203
数据结构上机4队列-杨辉三角2
#include #include #define OK 1#define OVERFLOW -1#define ERROR 0typedef int Status, QElemType;//队列结构定义typedef struct { QElemType *base; int front; ...
分类:其他好文   时间:2015-12-17 00:20:07    阅读次数:199
log4j:WARN No appenders could be found for logger (freemarker.cache).
为了减少控制台输出从而减少处理时间,可以设置日志级别高一点,例如设置为“ERROR”打开类路径(就是和struts.xml文件同目录)下的log4j.properties(如果没有就新建一个),修改如下:log4j.logger.com.opensymphony.xwork2=ERRORlog4j....
分类:移动开发   时间:2015-12-16 23:08:53    阅读次数:2008
【转】Windows Error Code(windows错误代码详解)
本文来自:http://blog.sina.com.cn/s/blog_5e45d1be0100i0dr.htmlhttp://blog.sina.com.cn/s/blog_5e45d1be0100i0dt.htmlhttp://blog.sina.com.cn/s/blog_5e45d1be01...
分类:Windows程序   时间:2015-12-16 22:53:41    阅读次数:29789
软件安装问题-集合
protege4.3安装出现ERROR: Bundle org.protege.common [1] Error starting,去http://mirror.bit.edu.cn/apache/felix/下载一下最新版的org.apache.felix.main.distribution.zi...
分类:其他好文   时间:2015-12-16 21:35:13    阅读次数:131
在HTTPS环境下使用NSURLSession,证书验证无法通过
调试信息:测试环境是SSL3.0/TLS1.0,证书是通过Verisign颁发的错误信息是:9846, An ssl error has occurred and a secure connection to the server cannot be made实现了“NSURLSession:did...
分类:Web程序   时间:2015-12-16 21:02:14    阅读次数:6153
构造该正规式的有穷状态自动机
#include#include #define ok 1#define error 0#define MAXREGLUARLONG 40#define MAXSTATELONG 40 #define MAXCAHRSLONG 40 typedef int state;...
分类:其他好文   时间:2015-12-16 19:24:05    阅读次数:123
实验四 递归下降语法分析程序设计
#include#include #define ok 1#define error 0#define MAXREGLUARLONG 30#define MAXSTATELONG 30 #define MAXCAHRSLONG 30 typedef int state;...
分类:其他好文   时间:2015-12-16 19:14:21    阅读次数:187
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!