代码搜索:链表实现
找到约 10,000 项符合「链表实现」的源代码
代码结果 10,000
www.eeworm.com/read/444219/7616473
cpp 数据结构实现-堆栈-用链表来实现[anank].cpp
/*****************************************************************************************
** Program Name : Implementation of stack with chain
** Author : Lu Jian Hua
** Time : 2007
www.eeworm.com/read/265456/11263847
txt 数据结构实现-堆栈-用链表来实现[anank].txt
/*****************************************************************************************
** Program Name : Implementation of stack with chain
** Author : Lu Jian Hua
** Time : 2007
www.eeworm.com/read/364223/9918094
cpp 链表.cpp
#include
#include
#include
#include
using namespace std;
typedef struct node
{
int col,row,val;
struct node *down,*right;
}NODE;
NODE *
www.eeworm.com/read/358989/10172384
opt 链表.opt
www.eeworm.com/read/358989/10172385
plg 链表.plg
Build Log
--------------------Configuration: 链表 - Win32 Debug--------------------
Command Lines
Creating temporary file "D:\Temp\RSP17.tmp" wit
www.eeworm.com/read/358989/10172387
ncb 链表.ncb
www.eeworm.com/read/358989/10172390
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
www.eeworm.com/read/358989/10172391
dsw 链表.dsw
Microsoft Developer Studio Workspace File, Format Version 6.00
# 警告: 不能编辑或删除该工作区文件!
###############################################################################
Project: "链表"=".\链表.dsp" - Pa
www.eeworm.com/read/355363/10273963
txt 链表.txt
unit TStack;
interface
type
PStackRec=^TStackRec;
TStackRec=record
Data:char;
Next:PStackRec;
Prev:pStackRec;
end;
TStack=class
private
pHead:PStackRec;
protected
www.eeworm.com/read/418460/10944572
txt 链表.txt
#include
#include
#include
typedef int elemtype;
typedef struct Lnode
{
elemtype data;
struct Lnode *next;
}lnode,*linklist;
linklist creastlist(linkl