代码搜索:自举升压结构
找到约 10,000 项符合「自举升压结构」的源代码
代码结果 10,000
www.eeworm.com/read/396541/8100907
c lianbiao11.c
#include "stdlib.h"
#define null NULL
struct links
{
int data;
struct links *next;
};
typedef struct links* link; /*定义结构指针数据类型*/
void start_link(link head) /*初始链表头*/
{
hea
www.eeworm.com/read/195897/8124400
c directory.c
#include
#include
#include
#include
#include "malloc.h"
/*词结构链表*/
struct ForwardNode
{
int frenqucy;
int filenum;
char *sWord;
struct WordName *next;
};
www.eeworm.com/read/246828/12702846
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/246828/12702948
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/246401/12730388
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/332560/12747545
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
www.eeworm.com/read/244919/12831663
c main.c
/*------两个多项式相加-------*/
/*作者:陆鹏超 日期:07.9.26*/
#include
#include
/*------自定义结构-----------*/
struct polynode
{
int coef; /*系数*/
int exp; /*指数*/
str
www.eeworm.com/read/143457/12874640
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/243761/12919001
txt w97m.marker.a(硬盘杀手)源代码.txt
注意:删去了主要数据结构
VERSION 1.0 CLASS
BEGIN
MultiUse = -1 'True
END
Attribute VB_Name = "ThisDocument"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_Predeclare
www.eeworm.com/read/142782/12922547
c ip.c
#include
#include
#include "ethernet.h"
#include "ip.h"
#define IP_TTL 128 /* Time To Live for an outgoing IP datagram */
extern NODE locnode; //本机的节点信息结构