代码搜索:链表实现
找到约 10,000 项符合「链表实现」的源代码
代码结果 10,000
www.eeworm.com/read/463983/7171141
exe 矩阵到链表.exe
www.eeworm.com/read/463983/7171145
obj 矩阵到链表.obj
www.eeworm.com/read/463983/7171146
pdb 链表到矩阵.pdb
www.eeworm.com/read/463983/7171148
pdb 矩阵到链表.pdb
www.eeworm.com/read/463983/7171154
exe 链表到矩阵.exe
www.eeworm.com/read/463983/7171161
cpp 链表到矩阵.cpp
#include"jb.h"
void travgraph(adjlist g,int n);
void btoj(adjlist g,int n);
void main()
{
adjlist g;
int e,i,s,d,n;
struct edgenode *p,*q;
printf("输入结点数(n)和边数(e): ");
scanf("%d%d",&
www.eeworm.com/read/450798/7476768
c 单循环链表.c
# define null 0
typedef char ElemType;
typedef struct Circular
{
ElemType data;
struct LNode *next;
};
setnull(struct Circular **p)
{
*p=null;
}
int length (struct Circular **p)
{
www.eeworm.com/read/449851/7495764
ppt 双向循环链表.ppt
www.eeworm.com/read/449694/7498034
c 单循环链表.c
# define null 0
typedef char ElemType;
typedef struct Circular
{
ElemType data;
struct LNode *next;
};
setnull(struct Circular **p)
{
*p=null;
}
int length (struct Circular **p)
{
www.eeworm.com/read/298978/7902917
h 输出单链表.h
void print(linklist*h)
//输出单链表
{ linklist *p=h->next;
while(p!=NULL)
{ cout