代码搜索:自举升压结构
找到约 10,000 项符合「自举升压结构」的源代码
代码结果 10,000
www.eeworm.com/read/286613/8756048
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/286613/8756628
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/385645/8794715
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/385645/8794900
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/429144/8816801
c huff_tc.c
#include
#include
#include
#include
#include
#define LEN sizeof(struct huffmantree)
#define NULL 0
struct huffmantree /*huffman树结构体*/
www.eeworm.com/read/285689/8822740
h seqstack.h
/*顺序栈的头文件 */
typedef struct stack /*栈结构定义*/
{ bintree data[100];
int tag[100]; /*为栈中每个元素设置的标记,用于后序遍历*/
int top; /*栈顶指针*/
} seqstack;
/****
www.eeworm.com/read/285689/8823094
c creamalk.c
/*注:稀疏矩阵的下标从1开始使用*/
typedef struct matrixnode /*十字链表中结点的结构*/
{
int row, col;
struct matrixnode *right, * down;
union{ int val;
struct matrixnode *next;
www.eeworm.com/read/384841/8839427
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/382947/8987689
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/426935/8990864
c getcpu.c
/*用C语言获得CPU的占用率*/
/************************/
#include
#include
#include //头文件
struct occupy //声明一个occupy的结构体
{
c