代码搜索:链表实现
找到约 10,000 项符合「链表实现」的源代码
代码结果 10,000
www.eeworm.com/read/235776/14053414
c 单链表插入.c
//单链表的插入
#include "Stdio.h"
#include "Conio.h"
#define flag 0
typedef int datatype;
typedef struct node
{
datatype data;
struct node *next;
}LNode,*LinkList;
LinkList Creat_LinkLi
www.eeworm.com/read/235776/14053415
exe 单链表插入.exe
www.eeworm.com/read/202643/15377336
cpp 双向循环链表.cpp
#include
typedef struct DuLNode //双向循环链表的存储结构
{ int data;
struct DuLNode *prior;
struct DuLNode *next;
}DuLNode,*DuLinkList;
int ListLocate_DuL(DuLinkList L,i
www.eeworm.com/read/201871/15394126
txt 单向链表排序..txt
单向链表排序.
#include
typedef struct Link
{
int data;
struct Link *next;
}linkx,*linky;
linky Init()
{
linky head,p,q,s;
int n=0;
clrscr();
printf("please input 10 num: ");
he
www.eeworm.com/read/112903/15474695
cpp 学生类链表.cpp
#include
#include
class student{
private:int num,grade;
student *next,*last,*newnode;
char name[10];
static int amount;
static student *first;
public:student* create();
www.eeworm.com/read/110923/15522892
txt 链表队列文档.txt
问题描述:利用设计的算法操作以带头结点的循环链表表示队列,要求只设一个指针指向队尾元素结点而不设头指针
算法思路:队列初始化→插入一个新的结点→删除一个的结点
测试:编译成功,运行成功
---『源程序文档』---
program Linked_QueueAdt (input,output); 『链表表示队列及其上操作程序』
type ...
www.eeworm.com/read/101874/15798699
doc 单向链表排序.doc
www.eeworm.com/read/101871/15798702
doc 单向链表排序.doc
www.eeworm.com/read/260795/11701444