代码搜索:Linklist
找到约 3,002 项符合「Linklist」的源代码
代码结果 3,002
www.eeworm.com/read/161929/10356379
cpp linklist.cpp
//LinkList.cpp
#include "LinkList.h"
/*
*前置条件:单链表不存在
*输 入:无
*功 能:构建一个单链表
*输 出:无
*后置条件:构建一个单链表
*/
template
LinkList:: LinkList( )
{
first=new Node; first->next=NUL
www.eeworm.com/read/161929/10356381
plg linklist.plg
Build Log
--------------------Configuration: 单链表 - Win32 Debug--------------------
Command Lines
Creating temporary file "C:\TEMP\RSP34.tmp" wi
www.eeworm.com/read/161929/10356382
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/161929/10356384
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/161929/10356387
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/161929/10356540
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/161837/10366235
cpp linklist.cpp
//LinkList.cpp
#include "LinkList.h"
/*
*前置条件:单链表不存在
*输 入:无
*功 能:构建一个单链表
*输 出:无
*后置条件:构建一个单链表
*/
template
LinkList:: LinkList( )
{
first=new Node; first->next=NUL
www.eeworm.com/read/161837/10366241
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/10366248
dsp linklist.dsp
# Microsoft Developer Studio Project File - Name="链表1" - Package Owner=
# Microsoft Developer Studio Generated Build File, Format Version 6.00
# ** DO NOT EDIT **
# TARGTYPE "Win32 (x86) Conso
www.eeworm.com/read/161837/10366253
h linklist.h
//LinkList.h 声明类LinkList
#ifndef LinkQueue_H
#define LinkQueue_H
#include "Node.h"
template
class LinkList
{
public:
LinkList( ); //建立只有头结点的空链表
LinkList(T a[], int n); /