代码搜索:数字存储
找到约 10,000 项符合「数字存储」的源代码
代码结果 10,000
www.eeworm.com/read/293882/8266348
h c2-1.h
// c2-1.h 线性表的动态分配顺序存储结构
#define LIST_INIT_SIZE 10 // 线性表存储空间的初始分配量
#define LIST_INCREMENT 2 // 线性表存储空间的分配增量
struct SqList
{
ElemType *elem; // 存储空间基址
int length; // 当前长度
int list
www.eeworm.com/read/293882/8267259
h c3-5.h
/* c3-5.h 队列的顺序存储结构(非循环队列,队列头元素在[0]单元) */
#define QUEUE_INIT_SIZE 10 /* 队列存储空间的初始分配量 */
#define QUEUE_INCREMENT 2 /* 队列存储空间的分配增量 */
typedef struct
{
QElemType *base; /* 初始化的动态分配存储空间 */
www.eeworm.com/read/368262/9703265
h c2-1.h
// c2-1.h 线性表的动态分配顺序存储结构
#define LIST_INIT_SIZE 10 // 线性表存储空间的初始分配量
#define LISTINCREMENT 2 // 线性表存储空间的分配增量
struct SqList
{
ElemType *elem; // 存储空间基址
int length; // 当前长度
int lists
www.eeworm.com/read/269550/11094265
h c2-1.h
// c2-1.h 线性表的动态分配顺序存储结构
#define LIST_INIT_SIZE 10 // 线性表存储空间的初始分配量
#define LISTINCREMENT 2 // 线性表存储空间的分配增量
struct SqList
{
ElemType *elem; // 存储空间基址
int length; // 当前长度
int lists
www.eeworm.com/read/266761/11213344
h c2-1.h
// c2-1.h 线性表的动态分配顺序存储结构
#define LIST_INIT_SIZE 10 // 线性表存储空间的初始分配量
#define LISTINCREMENT 2 // 线性表存储空间的分配增量
struct SqList
{
ElemType *elem; // 存储空间基址
int length; // 当前长度
int lists
www.eeworm.com/read/266126/11239119
h c2-1.h
// c2-1.h 线性表的动态分配顺序存储结构
#define LIST_INIT_SIZE 10 // 线性表存储空间的初始分配量
#define LISTINCREMENT 2 // 线性表存储空间的分配增量
struct SqList
{
ElemType *elem; // 存储空间基址
int length; // 当前长度
int lists
www.eeworm.com/read/235539/14064609
h c2-1.h
// c2-1.h 线性表的动态分配顺序存储结构
#define LIST_INIT_SIZE 10 // 线性表存储空间的初始分配量
#define LIST_INCREMENT 2 // 线性表存储空间的分配增量
struct SqList
{
ElemType *elem; // 存储空间基址
int length; // 当前长度
int list
www.eeworm.com/read/106800/15621096
h c2-1.h
// c2-1.h 线性表的动态分配顺序存储结构
#define LIST_INIT_SIZE 10 // 线性表存储空间的初始分配量
#define LISTINCREMENT 2 // 线性表存储空间的分配增量
struct SqList
{
ElemType *elem; // 存储空间基址
int length; // 当前长度
int lists
www.eeworm.com/read/446574/7576566
h stack.h
#ifndef STACK_H
#define STACK_H
#define STACK_INIT_SIZE 200 //存储空间初始分配量
#define STACKINCRAMENT 10 //存储空间分配增量
#define SElemType int
/**---栈的顺序存储表示----*/
typedef struct stack
{
SElemType* bas