python27中 Libmimetypes.py的一个bug,属于 def enum_types(mimedb)函数:错误提示信息:123File D:Python27libmimetypes.py, line 249, in enum_typesctype = ctype.encode(defa...
分类:
其他好文 时间:
2015-03-31 19:54:57
阅读次数:
93
杂谈:最近有点慵懒,不好不好。好几天都没写代码,原本准备上星期完结 树 这一章节的。现在 又耽误了。哎。要抓紧时间啊。
下面直接上代码:
可以到我的网盘下载源代码,或者 直接拷贝下面的源代码 运行
// HuffmanTree.cpp : 定义控制台应用程序的入口点。
//哈弗曼编码,译码
#include "stdafx.h"
#include
#include
enum E_...
分类:
其他好文 时间:
2015-03-31 16:09:19
阅读次数:
177
// the network state of the device for Reachability 1.5.typedef enum { NotReachable = 0, //无连接 ReachableViaCarrierDataNetwork, //使用3G/GPRS网络 ...
分类:
移动开发 时间:
2015-03-30 18:25:13
阅读次数:
123
查看微软的C#参考中enum介绍的时候,冒出来下面一段:可靠编程 与任何常量一样,对枚举中各个值的所有引用在编译时均将转换为数值文本。 这可形成潜在的版本控制问题,如常量(C# 编程指南)中所述。 给新版本的枚举赋其他值,或者更改新版本中枚举成员的值,可导致相关源代码出现问题。 通常在 switc....
分类:
编程语言 时间:
2015-03-30 18:23:44
阅读次数:
147
#include
#include
#include
#define VERTEX_NUM 8
typedef enum {FALSE = 0, TRUE = 1}BOOL;
typedef struct ArcNode {
int adjvex;
struct ArcNode *nextarc; // struct不能少
}ArcNode;
BOOL visi...
分类:
其他好文 时间:
2015-03-30 09:26:01
阅读次数:
201
定义一个枚举public enum ArticleCategory { /// /// 头条 /// Headlines = 10, /// /// 资讯 /// Imformation = 20, /// /// 学术 ...
分类:
其他好文 时间:
2015-03-29 10:46:36
阅读次数:
76
02.尽量以const,enum,inline代替#define 原因:编译前的预处理会替换宏,所以调试的时候找不到错误 1.const 尽量用const替代常量宏定义 两种特殊情况: (1).常量指针 通常定义为const cha...
分类:
编程语言 时间:
2015-03-28 23:04:39
阅读次数:
263
Go to my personal blog
There is a program to convert a string of hexadecimal digits into its equivalent integer value as below.
enum loop {NO, YES};
/* htoi: convert hexadecimal string s to int...
分类:
其他好文 时间:
2015-03-28 17:19:59
阅读次数:
269
转自 http://tutuge.me/2015/03/21/effective-objective-c-5-enum///NS_ENUM,定义状态等普通枚举typedef NS_ENUM(NSUInteger, TTGState) { TTGStateOK = 0, TTGStateE...
分类:
编程语言 时间:
2015-03-22 09:06:41
阅读次数:
161