代码搜索:自举升压结构
找到约 10,000 项符合「自举升压结构」的源代码
代码结果 10,000
www.eeworm.com/read/482837/6614305
cpp p1-79.cpp
#include
//定义结构
struct student {
char name[10];
float grade;
};
//更改student数据的grade成员,参数形式为引用
void change(student &x,float grade)
{
x.grade=grade;
}
//更改stu
www.eeworm.com/read/479650/6689738
cpp p1-79.cpp
#include
//定义结构
struct student {
char name[10];
float grade;
};
//更改student数据的grade成员,参数形式为引用
void change(student &x,float grade)
{
x.grade=grade;
}
//更改stu
www.eeworm.com/read/265203/11272988
cpp jiaocaiguanli.cpp
#include
#include
#include
#include
#include
#include
//定义结构体
struct bookData
{
char booNum[9];
char name[20];
www.eeworm.com/read/409202/11341618
_h global._h
//
struct str_TWI //TWI数据结构
{
volatile unsigned char STATUS; //TWI_操作状态
unsigned char SLA; //从设备的器件地址
// unsigned int ADDR; //从设备的数据地址
unsigned char *pBUF;
www.eeworm.com/read/263656/11348850
cpp rceps.cpp
#include
#include
#define PI 3.14159265358979f
//信号点数
#define FFT_NUM 8
//FFT级数
#define FFT_M 3
//复数结构
typedef struct
{
float real ;
float i
www.eeworm.com/read/408834/11368039
cpp 051211(方乐).cpp
#include
#include
#define max 20
struct book //定义通讯录结构
{
char name[max];
char tel[max];
char adj[max];
char you[max];
int age;
}q[100];
char
www.eeworm.com/read/263066/11377617
cpp pascal.cpp
#include
#include
#include /*用到判断字符的函数*/
#include /*复制字符串用*/
/********************************************************
* 定义数据结构 (使用全局变量记
www.eeworm.com/read/408141/11404500
cpp global.cpp
/*
* name: GameSetting.h
*
* desc: 全局数据的声明,包括对象和结构 Global Variables Definition
*
*/
#include "stdafx.h"
std::string g_ServerName;
std::string g_CharName;
CGameSet g_GameSet;
www.eeworm.com/read/404085/11491883
c 易涛-0604012007-线索二叉树的运算.c
#include "stdio.h"
#include "malloc.h"
#include "windows.h"
#define maxsize 20 //规定树中结点的最大数目
typedef struct node{ //定义数据结构
int ltag,rtag;
www.eeworm.com/read/403956/11495224
h tobjdictionary.h
//tObjDictionary.h
/*/////////////////////////////////////////////////////////////////
对象 Dictionary类模板
与IDDictionary不一样,这里在进行allocEntry、freeEntry时,将调用
对象的构造函数、析构函数
Entry结构 需要符合
{
_T