代码搜索:链式

找到约 448 项符合「链式」的源代码

代码结果 448
www.eeworm.com/read/331851/12803756

txt 线性表的链式存储结构.txt

#include"stdio.h" #include int length;//保存线性链表的长度 typedef struct lnode{ float data; struct lnode *next; }*linklist; void initlist(linklist &l){ linklist p; int i=0; p=(l
www.eeworm.com/read/221507/14739499

dsp 不带头结点的链式堆栈类.dsp

# Microsoft Developer Studio Project File - Name="不带头结点的链式堆栈类" - Package Owner= # Microsoft Developer Studio Generated Build File, Format Version 6.00 # ** DO NOT EDIT ** # TARGTYPE "Win32 (x8
www.eeworm.com/read/378782/9216384

txt 2.txt

线性表的链式存储结构 单链表(无表头结点) 1。链结点类ListNode类定义 2。单链表类的定义 1,构造函数 2.析构函数 3.单链表类的实现(功能) 1.初始化 2.头插入 3.尾插入 4.后插入 5.前插入 6.删除 7.逆置 4.main()函数的实现。
www.eeworm.com/read/113995/15118965

txt 2.txt

线性表的链式存储结构 单链表(无表头结点) 1。链结点类ListNode类定义 2。单链表类的定义 1,构造函数 2.析构函数 3.单链表类的实现(功能) 1.初始化 2.头插入 3.尾插入 4.后插入 5.前插入 6.删除 7.逆置 4.main()函数的实现。
www.eeworm.com/read/388984/8558426

txt 栈的链式存储结构和操作实现.txt

#include #include using namespace std; typedef int ElemType; struct SNode{ ElemType data; SNode* next; }; void InitStack(SNode*& HS)//初
www.eeworm.com/read/438686/7728122

txt 线性表的链式表示和实现 .txt

线性表的<mark>链式</mark>表示和实现 <mark>链式</mark>存储结构存储线性表数据元素的方法,是用结点构造 链。指针是指向物理存储单元地址的变量,我们把由数据元素 域和一个或若干个指针域组成的一个结构体称为一个结点。其 中,数据域用来存放数据元素,指针域用来构造数据元素之间 的关联关系。<mark>链式</mark>存储结构的特点是数据元素间的逻辑关系表 现在结点的链接关系上。<mark>链式</mark>存储结构的线性表称为 ...