代码搜索:链表实现

找到约 10,000 项符合「链表实现」的源代码

代码结果 10,000
www.eeworm.com/read/304950/13782495

cpp 作业单链表.cpp

#include #include #define OK 1 #define ERROR 0 #define NULL 0 typedef int ElemType; typedef int Status; typedef struct Node { ElemType data; // 数据域 str
www.eeworm.com/read/303714/13809995

cpp 约瑟夫问题-链表.cpp

#include #include typedef struct queue{ int num; struct queue *next; }Queue; void main(){ int n,s,m,i; Queue *p,*h,*x; scanf("%d,%d,%d",&n,&s,&m); h=(Queue *)mallo
www.eeworm.com/read/481249/6646527

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/477965/6726808

dsw 链表基本操作.dsw

Microsoft Developer Studio Workspace File, Format Version 6.00 # 警告: 不能编辑或删除该工作区文件! ############################################################################### Project: "链表基本操作"=".\链表基本操作.d
www.eeworm.com/read/477965/6726809

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) Co
www.eeworm.com/read/477965/6726810

cpp 链表基本操作.cpp

#include "iostream.h" #include "stdio.h" #include "malloc.h" typedef struct lnode { char data; struct lnode * next; } lnode; lnode *creat()//尾插法建表 { lnode *head,*rear,*p; char