代码搜索:自举升压结构
找到约 10,000 项符合「自举升压结构」的源代码
代码结果 10,000
www.eeworm.com/read/329948/12925697
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/243219/12954772
h bitreenode.h
//二叉链存储结构的二叉树操作实现
typedef struct Node
{
DataType data;
struct Node *leftChild;
struct Node *rightChild;
}BiTreeNode;
void Initiate(BiTreeNode **root)
{
*root=(BiTreeNode *)malloc(size
www.eeworm.com/read/243217/12954899
m ex0601.m
%例6-1 通过对字段赋值创建结构体
patient.name = 'John Doe';
patient.billing = 127.00;
patient.test = [79 75 73; 180 178 177.5; 220 210 205];
patient
whos
www.eeworm.com/read/141752/12987985
txt linktostack.txt
#include "stdio.h"
#include "stdlib.h"
typedef struct node
{//链表结构
char data;
struct node *next;
}stnode;
void init(stnode *stacklink)
{//初始化链表
stacklink->next=NULL;
}
void push(s
www.eeworm.com/read/328377/13031682
h commstruct.h
#ifndef __CommStruct_HeaderFile_hth_
#define __CommStruct_HeaderFile_hth_
//token串结点结构定义
typedef struct __tokenode
{
unsigned char keycode; //种别码
unsigned int strId; //自身值:符号表的入口地址
__
www.eeworm.com/read/242043/13097418
h adjmwgraph.h
#include "SeqList.h" //包含动态数组结构的顺序表类
class AdjMWGraph
{
private:
SeqList Vertices; //顶点顺序表
int Edge[MaxVertices][MaxVertices]; //边权值数组
int numOfEdges; //边的个数
void
www.eeworm.com/read/242043/13097423
h adjmwgraph2.h
#include "SeqList.h" //包含动态数组结构的顺序表类
class AdjMWGraph
{
private:
SeqList Vertices; //顶点顺序表
int Edge[MaxVertices][MaxVertices]; //边权值数组
int numOfEdges; //边的个数
void
www.eeworm.com/read/242043/13097442
h adjmwgraph.h
#include "SeqList.h" //包含动态数组结构的顺序表类
class AdjMWGraph
{
private:
SeqList Vertices; //顶点顺序表
int Edge[MaxVertices][MaxVertices]; //边权值数组
int numOfEdges; //边的个数
void
www.eeworm.com/read/242043/13097464
h adjmwgraph.h
#include "SeqList.h" //包含动态数组结构的顺序表类
class AdjMWGraph
{
private:
SeqList Vertices; //顶点顺序表
int Edge[MaxVertices][MaxVertices]; //边权值数组
int numOfEdges; //边的个数
void
www.eeworm.com/read/326973/13107532
h c3-2.h
/* c3-2.h 单链队列--队列的链式存储结构 */
typedef struct QNode
{
QElemType data;
struct QNode *next;
}QNode,*QueuePtr;
typedef struct
{
QueuePtr front,rear; /* 队头、队尾指针 */
}LinkQueue;