代码搜索:自举升压结构
找到约 10,000 项符合「自举升压结构」的源代码
代码结果 10,000
www.eeworm.com/read/378183/9246171
dat funtc181.dat
函数名称: getviewsettings
函数原型: void far getviewsettings(struct viewporttype far *viewport)
函数功能: 得到当前视口信息
函数返回:
函数说明: viewport 视口信息,该结构如下:
struct viewporttype
{
www.eeworm.com/read/180877/9282415
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/377034/9297035
cpp 遍历二叉树.cpp
#define MAX_TREE_DEGREE 10
#include
#include //定义杂项函数及内存分配函数
typedef struct BTnode{// 结点结构
char data;
struct BTnode* lchild;
struct BTnode* rchild;
www.eeworm.com/read/180562/9302422
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/180560/9302530
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/180558/9302815
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/179957/9326636
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/375828/9348827
c bfs.c
#include
#include
#define SIZE 100
#define MAXyjj_queue 10 //队列的最大容量
struct node //图的顶点结构
{
int vertex; //顶点数据
struct node *nextnode;
}
www.eeworm.com/read/374887/9380256
h menu.h
// menu.h
//
#ifndef __MENU_H
#define __MENU_H
#include "includes.h"
// Menu Item 菜单信息数据结构
typedef struct
{
uchar strChinese[10]; // 5个汉字
uchar Mode; // show mode
www.eeworm.com/read/374887/9380261
c menu.c
// menu.c
//
#include "includes.h"
// 菜单信息结构
MenuInfor MenuInforFile = {"文件",1,20,10,24,12,1,4};
MenuInfor MenuInforNew = {"新建",1,20,10,24,12,1,2};
MenuInfor MenuInforEmpy