代码搜索:自举升压结构
找到约 10,000 项符合「自举升压结构」的源代码
代码结果 10,000
www.eeworm.com/read/124933/14524244
cpp 10_87.cpp
#include
struct element
{ //定义节点结构
int val; //数据元素域
element *next; //链指针域
};
class list
{ //list类定义
element *elems; //elems为当前标识指针
public:
list(){elems=0;}
~list(); /
www.eeworm.com/read/124628/14555961
h tcpip.h
#define BYTE unsigned char
#define WORD unsigned int
#define LONG unsigned long
union u {WORD word;
struct{BYTE high;BYTE low;} bytes;//字节顺序为高位在前的2byte结构
};
union w { LONG dwor
www.eeworm.com/read/223073/14660973
txt 21-8.txt
/* 范例:21-8 自定义例外类 */
#include
class DividByZero // 自定义错误处理类
{
public:
DividByZero( const char *message ):ErrorMsg(message){}
// 结构函数
~DividByZero(){} // 析构函数
co
www.eeworm.com/read/223000/14665359
txt 21-8.txt
/* 范例:21-8 自定义例外类 */
#include
class DividByZero // 自定义错误处理类
{
public:
DividByZero( const char *message ):ErrorMsg(message){}
// 结构函数
~DividByZero(){} // 析构函数
co
www.eeworm.com/read/121692/14741689
h haffman.h
/*文件Haffman.h*/
typedef struct
{
int weight; /*权值*/
int flag; /*标记*/
int parent; /*双亲结点下标*/
int leftChild; /*左孩子下标*/
int rightChild; /*右孩子下标*/
}HaffNode; /*哈夫曼树的结点结构*/
type