代码搜索:链表实现
找到约 10,000 项符合「链表实现」的源代码
代码结果 10,000
www.eeworm.com/read/417936/10970764
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/461147/7232577
opt 链表.opt
www.eeworm.com/read/461147/7232578
plg 链表.plg
Build Log
--------------------Configuration: 链表 - Win32 Debug--------------------
Command Lines
Results
链表.exe - 0 error(s), 0
www.eeworm.com/read/461147/7232580
ncb 链表.ncb
www.eeworm.com/read/461147/7232589
exe 链表.exe
www.eeworm.com/read/461147/7232590
pdb 链表.pdb
www.eeworm.com/read/461147/7232591
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/461147/7232592
dsw 链表.dsw
Microsoft Developer Studio Workspace File, Format Version 6.00
# 警告: 不能编辑或删除该工作区文件!
###############################################################################
Project: "链表"=".\链表.dsp" - Pa
www.eeworm.com/read/451967/7452899
c 链表.c
#include
#include
typedef struct note
{long data;
struct node *next;
}NODE;
int n;
NODE *creat(void);
void print(NODE*head);
NODE *del(NODE *head,long num);
NODE *force
www.eeworm.com/read/434521/7862339