代码搜索:自举升压结构
找到约 10,000 项符合「自举升压结构」的源代码
代码结果 10,000
www.eeworm.com/read/130200/14203554
h c2-3.h
// c2-3.h 线性表的静态单链表存储结构
#define MAX_SIZE 100 // 链表的最大长度
typedef struct
{
ElemType data;
int cur;
}component,SLinkList[MAX_SIZE];
www.eeworm.com/read/128256/14308405
cpp p1-70.cpp
#include
//定义结构
struct student {
char name[10];
float grade;
};
//交换student类型的数据
void swap(student &x,student &y) //swap的参数为引用传递方式
{
student temp;
temp
www.eeworm.com/read/127962/14324279
h c3-2.h
/* c3-2.h 单链队列--队列的链式存储结构 */
typedef struct QNode
{
QElemType data;
struct QNode *next;
}QNode,*QueuePtr;
typedef struct
{
QueuePtr front,rear; /* 队头、队尾指针 */
}LinkQueue;
www.eeworm.com/read/228367/14388276
vhd and2_2.vhd
--与非门的结构描述
LIBRARY ieee;
USE ieee.std_logic_1164.ALL;
ENTITY and2_2 IS
PORT(
a,b: IN bit;
y: OUT bit);
END ;
ARCHITECTURE struct OF and2_2 IS
component inv_comp
www.eeworm.com/read/228167/14399141
cpp 2_11.cpp
#include
#include
struct student //学生信息结构体
{
int num; //学号
char name[20]; //姓名
char sex; //性别
int age; //年龄
}stu={97001,"Lin Lin",'F',19};
v
www.eeworm.com/read/125549/14486689
cpp p1-70.cpp
#include
//定义结构
struct student {
char name[10];
float grade;
};
//交换student类型的数据
void swap(student &x,student &y) //swap的参数为引用传递方式
{
student temp;
temp
www.eeworm.com/read/125316/14498934
c fatinit.c
#ifndef _FAT_DEFINE
#include "FAT.c"
#endif
void FATInit(void);
void FATInit(void)
{
register BYTE i;
DPT = (struct DPTStr *)(DiskBuffer+0x1be); //分区表结构指针
BOOTSEC = (struct BootSec