代码搜索:链表实现
找到约 10,000 项符合「链表实现」的源代码
代码结果 10,000
www.eeworm.com/read/264444/11314971
dsw 双链表.dsw
Microsoft Developer Studio Workspace File, Format Version 6.00
# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE!
###############################################################################
www.eeworm.com/read/264444/11314978
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 (x86) Conso
www.eeworm.com/read/264444/11314979
exe 双链表.exe
www.eeworm.com/read/264444/11314981
plg 双链表.plg
Build Log
--------------------Configuration: 双链表 - Win32 Debug--------------------
Command Lines
Creating temporary file "C:\DOCUME~1\ADMINI~1\
www.eeworm.com/read/264444/11314986
ncb 双链表.ncb
www.eeworm.com/read/263639/11351818
cpp 链表操作.cpp
#include
#include
typedef int datatype;
typedef struct node //声明
{
datatype data;
struct node *next;
}linklist;
linklist *head,*p,*r;
creatlistf()
www.eeworm.com/read/405283/11466874
c 单链表.c
/*单链表的各种操作*/
# define null 0
typedef char ElemType; /* 字符型数据*/
typedef struct LNode
{
ElemType data;
struct LNode *next;
};
setnull(struct LNode **p);
int length (struct LNode **p
www.eeworm.com/read/405283/11466995
c 单链表.c
#include
#include
struct roommate
{
char name[20];
long num;
int age;
char birthplace[20];
struct roommate *next;
};
struct roommate *head,*cthis,*cnew;
void
www.eeworm.com/read/405283/11466999
c 链表(递归).c
#include
#include
struct listNode{
int data;
struct listNode *nextPtr;
};
typedef struct listNode LISTNODE;
typedef LISTNODE * LISTNODEPTR;
LISTNODEPTR list(LISTNODEPTR , int); /
www.eeworm.com/read/261913/11615413
plg 链表测试.plg
Build Log
--------------------Configuration: 链表测试 - Win32 Debug--------------------
Command Lines
Creating temporary file "C:\DOCUME~1\ADMINI~1