代码搜索:自举升压结构
找到约 10,000 项符合「自举升压结构」的源代码
代码结果 10,000
www.eeworm.com/read/403956/11495228
h tobjnamedictionary.h
//tObjDictionary.h
/*/////////////////////////////////////////////////////////////////
对象 Dictionary类模板
与IDDictionary不一样,这里在进行allocEntry、freeEntry时,将调用
对象的构造函数、析构函数
Entry结构 需要符合
{
_T
www.eeworm.com/read/400548/11574578
h c6-4.h
// c6-4.h 树的二叉链表(孩子-兄弟)存储结构。在教科书第136页
typedef struct CSNode // 结点类型
{ TElemType data; // 结点的值
CSNode *firstchild,*nextsibling;
}CSNode,*CSTree;
www.eeworm.com/read/156813/11762156
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/258816/11841216
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/343634/11937624
m zrc2ploy.m
%由Lattice网状结构的映射系数计算多项式——Rc2poly
k=[-1.0386 -13.3038 1.0256 0.4750 2.1000];
r0=2.0000;
[A,efinal]=rc2poly(k,r0)
www.eeworm.com/read/153455/12031589
c ip.c
#include "necfg.h"
#include "ne2000.h"
#include "ip.h"
#include "..\inc\44blib.h"
#include
extern NODE locnode; //本机的节点信息结构(mac,ip,mask,port)
/****************************
www.eeworm.com/read/152522/12107933
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/254913/12113786
cpp chengji.cpp
#include "stdio.h"
#include
#include
#include"time.h"
/*定义学生结构体*/
struct Student
{
char ID[20];
char Name[20];
float Mark1;
float Mark
www.eeworm.com/read/340792/12133574
cpp 202669.cpp
#include
typedef char TElemtype ;
//创建结构体
typedef struct BiTNode
{
TElemtype data;
BiTNode *lchild,*rchild,*parent;
} *BiTree;
//先序序列创建二叉数
void CreateBiTree(BiTree &T,char s[],i
www.eeworm.com/read/340792/12133769
cpp 202642.cpp
#include
typedef char TElemtype ;
//创建结构体
typedef struct BiTNode
{
TElemtype data;
BiTNode *lchild,*rchild,*parent;
} *BiTree;
//先序序列创建二叉数
void CreateBiTree(BiTree &T,char s[],i