代码搜索:自举升压结构
找到约 10,000 项符合「自举升压结构」的源代码
代码结果 10,000
www.eeworm.com/read/155928/11837576
txt 21-8.txt
/* 范例:21-8 自定义例外类 */
#include
class DividByZero // 自定义错误处理类
{
public:
DividByZero( const char *message ):ErrorMsg(message){}
// 结构函数
~DividByZero(){} // 析构函数
co
www.eeworm.com/read/258547/11856282
txt 21-8.txt
/* 范例:21-8 自定义例外类 */
#include
class DividByZero // 自定义错误处理类
{
public:
DividByZero( const char *message ):ErrorMsg(message){}
// 结构函数
~DividByZero(){} // 析构函数
co
www.eeworm.com/read/344702/11865500
h tagstockinfo.h
//这是进货信息结构体的头文件
#ifndef _INC_STOCKINFO_
#define _INC_STOCKINFO_
//##ModelId=46B60939014C
struct tagStockInfo
{
//进货ID
//##ModelId=46B609390158
DWORD dwStockID;
//商品ID
//##ModelId=46
www.eeworm.com/read/344702/11865578
h tagorderinfo.h
//这是进货信息结构体的头文件
#ifndef _INC_ORDERINFO_
#define _INC_ORDERINFO_
//##ModelId=46B609390280
struct tagOrderInfo
{
//销售ID
//##ModelId=46B609390291
DWORD dwOrderID;
//客户名称
//##ModelId=46
www.eeworm.com/read/257581/11920320
c huffman.c
#include
#include
typedef struct huffman_node
{
int data;
int lchild;
int rchild;
int parent;
}bnode; //定义二叉链表结点结构
void SelectIJ(int k, bnode node[], int *i, in
www.eeworm.com/read/257293/11934773
c linkstring(1).c
/* 字符串的链接表示 */
#include
#include
struct StrNode; /* 链串的结点 */
typedef struct StrNode *PStrNode; /* 结点指针类型 */
struct StrNode { /* 链串的结点结构 */
char c;
www.eeworm.com/read/257293/11934917
c linkstring.c
/* 字符串的链接表示 */
#include
#include
struct StrNode; /* 链串的结点 */
typedef struct StrNode *PStrNode; /* 结点指针类型 */
struct StrNode { /* 链串的结点结构 */
char c;
www.eeworm.com/read/154670/11939287
c sort.c
#include
#include
#include
#include
#include "sort.h"
/* 排序空间内存段地址链表结构体 */
typedef struct SegmentAddr
{
int iIndex;
void *pSegAddr;
str