代码搜索:自举升压结构
找到约 10,000 项符合「自举升压结构」的源代码
代码结果 10,000
www.eeworm.com/read/121135/14768867
cpp 实验8.cpp
#include
#include
#define n 5
void main( )
{
FILE *fp1; /*定义文件指针*/
char *temp;
int i;
struct stu{ /* 定义学生记录结构*/
char name[15];
char num[6];
www.eeworm.com/read/220778/14789486
c twi.c
#include
#include
#include"twi.h"
static unsigned char ORGDATA[16];
struct str_TWI //TWI数据结构
{
volatile unsigned char STATUS; //TWI_操作状态
unsigned char
www.eeworm.com/read/120254/14808908
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/117257/14933397
cpp fscan.cpp
//#include
#include
#include
#include
const namelen=40;
typedef struct symtab_node //二叉树的结点结构
{
struct symtab_node *left; //
www.eeworm.com/read/217414/14965276
c simple.c
//////////////////////////////进程简单轮转法调度算法
////文档中有更详细的说明
#include "stdio.h"
#include
#include
# define getpcb(type) (type*)malloc(sizeof(type))
struct pcb{//进程结构体
www.eeworm.com/read/210545/15196810
txt 21-8.txt
/* 范例:21-8 自定义例外类 */
#include
class DividByZero // 自定义错误处理类
{
public:
DividByZero( const char *message ):ErrorMsg(message){}
// 结构函数
~DividByZero(){} // 析构函数
co