代码搜索:链表实现
找到约 10,000 项符合「链表实现」的源代码
代码结果 10,000
www.eeworm.com/read/332124/12777318
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/332124/12777328
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/332124/12777504
plg 单链表.plg
Build Log
--------------------Configuration: 单链表 - Win32 Debug--------------------
Command Lines
Creating temporary file "C:\DOCUME~1\Apple\LOC
www.eeworm.com/read/331857/12803678
txt 循环链表.txt
#include"stdio.h"
#include"stdlib.h"
int length;//记录线性链表的长度
typedef struct lnode{
float data;
struct lnode *next;
}*linklist;
void initlist(linklist &l){
int k;
linklist end;//记录线性链表的
www.eeworm.com/read/331851/12803770
txt 双向链表.txt
#include"stdio.h"
#include"stdlib.h"
typedef struct lnode{
float data;
struct lnode *prior;
struct lnode *next;
}*dublinklist;
void initlist(dublinklist &l){
l=(dublinklist)malloc(size
www.eeworm.com/read/244533/12858067
cpp 双向链表.cpp
//* * * * * * * * * * * * * * * * * * * * * * * *
//*CHAPTER :2 (2_3) *
//*PROGRAM :双向链表 *
//*CONTENT :生成,插入,删除,定位,查找 *
//* * * *
www.eeworm.com/read/244533/12858147
exe 双向链表.exe
www.eeworm.com/read/244533/12858176
cpp 双向链表.cpp
//* * * * * * * * * * * * * * * * * * * * * * * *
//*CHAPTER :2 (2_3) *
//*PROGRAM :双向链表 *
//*CONTENT :生成,插入,删除,定位,查找 *
//* * * *
www.eeworm.com/read/244533/12858302
exe 双向链表.exe
www.eeworm.com/read/243633/12930484
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