代码搜索:Linklist
找到约 3,002 项符合「Linklist」的源代码
代码结果 3,002
www.eeworm.com/read/381265/9099962
c linklist.c
/**************************************************************************
** Copyright (c) 2008 OCC, Inc.
**
** Project: Link List
** File: linklist.c
** Author: Michael
** Date: 10/31/2
www.eeworm.com/read/282078/9121503
h linklist.h
//-----------------------------------------------------------------------------
//
// $Logfile:: /Sin/LINKLIST.H $
// $Revision:: 2
www.eeworm.com/read/378782/9216378
ncb linklist.ncb
www.eeworm.com/read/378782/9216379
opt linklist.opt
www.eeworm.com/read/378782/9216380
cpp linklist.cpp
//////////////////////////////////////////////////
/*
程序功能:各个程序算法的实现
开发人员:葛兴高
开发日期:2003、11、19
开发版本:1.0
*/
#include "LinkList.hpp"
LinkList::LinkList()
{
head=tail=p=NULL;
}
void
www.eeworm.com/read/378782/9216385
plg linklist.plg
Build Log
--------------------Configuration: LinkList - Win32 Debug--------------------
Command Lines
Creating temporary file "C:\DOCUME~1\Mo\L
www.eeworm.com/read/378782/9216387
hpp linklist.hpp
typedef int DataType;
class ListNode
{
public:
DataType data;
ListNode *next;
ListNode(const DataType &itemval,ListNode *ptrnext=NULL)
{
data=itemval;
next=ptrnext;
}
ListNode
www.eeworm.com/read/378782/9216393
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/378782/9216396
dsp linklist.dsp
# Microsoft Developer Studio Project File - Name="LinkList" - Package Owner=
# Microsoft Developer Studio Generated Build File, Format Version 6.00
# ** DO NOT EDIT **
# TARGTYPE "Win32 (x86)
www.eeworm.com/read/377555/9271532
c linklist.c
int printf(char * format, ...);
int scanf(char * format, ...);
void *malloc(int size);
void free(void *pointer);
typedef struct _list{
int data;
struct _list*next;
}List;
void insert(List **