代码搜索:链表实现
找到约 10,000 项符合「链表实现」的源代码
代码结果 10,000
www.eeworm.com/read/323036/13356906
cpp 链表.cpp
#include
#include
#include
#include
#include
//#include
#include
#define false 0
#define true 1
//typedef bo
www.eeworm.com/read/323036/13356908
doc 链表.doc
www.eeworm.com/read/309818/13664204
doc 链表.doc
www.eeworm.com/read/468713/6326060
cpp 链表.cpp
# include
# include
# include
typedef struct node
{
int data;
struct node *link;
} LIST,*LINK;
# define SIZE sizeof(LIST)
/*************Creat the list******
www.eeworm.com/read/157760/11665904
cpp 链表.cpp
#include
using namespace std;
#define OK 1
#define ERROR 0
#define OVERFLOW -2
typedef int ElemType;
typedef int status;
typedef struct LNode{
ElemType data;
struct LNode *next;
www.eeworm.com/read/126334/14428081
txt 链表.txt
题目:逆向输出链表。
1.程序源代码:
/*reverse output a list*/
#include "stdlib.h"
#include "stdio.h"
struct list
{ int data;
struct list *next;
};
typedef struct list node;
typedef node *link;
void mai
www.eeworm.com/read/121027/14774361
opt 链表.opt
www.eeworm.com/read/121027/14774364
plg 链表.plg
Build Log
--------------------Configuration: 链表 - Win32 Debug--------------------
Command Lines
Creating temporary file "C:\DOCUME~1\BLUEWA~1\L
www.eeworm.com/read/121027/14774370
ncb 链表.ncb
www.eeworm.com/read/121027/14774375
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) Consol