代码搜索:链表实现
找到约 10,000 项符合「链表实现」的源代码
代码结果 10,000
www.eeworm.com/read/139802/13130009
cpp 单链表.cpp
#include
class Time{
public:
Time()
{ h = m = 0;
}
Time(int hr, int min)
{ if (hr>=0 && hr=0 && min
www.eeworm.com/read/139802/13130078
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/139802/13130098
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/139802/13130115
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/137218/13339935
opt 双链表.opt
www.eeworm.com/read/137218/13339939
dsw 双链表.dsw
Microsoft Developer Studio Workspace File, Format Version 6.00
# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE!
###############################################################################
www.eeworm.com/read/137218/13339941
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/137218/13339943
plg 双链表.plg
Build Log
--------------------Configuration: 双链表 - Win32 Debug--------------------
Command Lines
Results
双链表.exe - 0 error(s),
www.eeworm.com/read/137218/13339944
ncb 双链表.ncb
www.eeworm.com/read/315835/13535490
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