代码搜索:自举升压结构
找到约 10,000 项符合「自举升压结构」的源代码
代码结果 10,000
www.eeworm.com/read/355913/10241662
cpp 10_87.cpp
#include
struct element
{ //定义节点结构
int val; //数据元素域
element *next; //链指针域
};
class list
{ //list类定义
element *elems; //elems为当前标识指针
public:
list(){elems=0;}
~list(); /
www.eeworm.com/read/161836/10366659
c bin2dec.c
#include
#include
#include
typedef struct{
char a;
struct Node *next;//链表指针
}Node, *Link;//定义链表结构
int main()
{
Link h, head, end;//定义链表指针
double dec=0;
www.eeworm.com/read/354174/10380617
cpp minitree.cpp
#include
#include
#include
#define infinate 10000
typedef struct graph /* 图的结构*/
{int **matrix; /*结点关系矩阵*/
char *vertex; /*字符结点*/
int arcs,vernum; /*边的条数,结
www.eeworm.com/read/352747/10518229
h c9-1.h
// c9-1.h 静态查找表的顺序存储结构
struct SSTable
{
ElemType *elem; // 数据元素存储空间基址,建表时按实际长度分配,0号单元留空
int length; // 表长度
};