代码搜索:Linklist
找到约 3,002 项符合「Linklist」的源代码
代码结果 3,002
www.eeworm.com/read/161837/10366256
ncb linklist.ncb
www.eeworm.com/read/161837/10366259
opt linklist.opt
www.eeworm.com/read/161837/10366264
cpp linklist.cpp
//LinkList.cpp
#include "LinkList.h"
/*
*前置条件:单链表不存在
*输 入:无
*功 能:构建一个单链表
*输 出:无
*后置条件:构建一个单链表
*/
template
LinkList:: LinkList( )
{
first=new Node; first->next=NUL
www.eeworm.com/read/161837/10366270
plg linklist.plg
Build Log
--------------------Configuration: 单链表 - Win32 Debug--------------------
Command Lines
Creating temporary file "C:\DOCUME~1\zhoulei\L
www.eeworm.com/read/161837/10366274
dsw linklist.dsw
Microsoft Developer Studio Workspace File, Format Version 6.00
# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE!
###############################################################################
www.eeworm.com/read/161837/10366279
dsp linklist.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) Conso
www.eeworm.com/read/161837/10366285
h linklist.h
//LinkList.h 声明类LinkList
#ifndef LinkList_H
#define LinkList_H
template
struct Node
{
T data;
Node *next; //此处也可以省略
};
template
class LinkList
{
public:
www.eeworm.com/read/161837/10366471
h linklist.h
#ifndef LINKLIST_H
#define LINKLIST_H
struct Node
{
int data;
Node *next;
};
class LinkList
{
public:
//LinkList( ){first=new Node; first->next=NULL;} //建立只有头结点的空链表
//~Link
www.eeworm.com/read/161772/10376452
exe linklist.exe
www.eeworm.com/read/161772/10376463
c linklist.c
/*========================================================*
* Program: listlist.c *
* Book: Sams Teach Yourself C in 21 Days *
* Purpose: Impl