代码搜索:ListNode
找到约 740 项符合「ListNode」的源代码
代码结果 740
www.eeworm.com/read/283740/8991542
h list.h
#ifndef _LIST_H_
#define _LIST_H_
#define KEYWORD 1
#define CONSTANT 2
#define VARIABLE 3
#define SYMBOL 4
typedef int CODETYPE;
typedef struct listentry{
char * value;
CODETYPE type;
}List
www.eeworm.com/read/469528/6929818
h listcode.h
template class LinList;
template class CirList;
template class ListNode
{
friend class LinList;
friend class CirList;
private:
ListNode *next;
publ
www.eeworm.com/read/175805/9530926
h mem.h
#ifndef __MEM_H__
#define __MEM_H__
struct mem {
int next, prev;
struct mem *pnext, *pprev;
int length;
int used;
};// align for 4 bytes
void mem_init(void);
void *mem_malloc(int
www.eeworm.com/read/465641/7050974
h mylist.h
#ifndef _MYLIST_H
#define _MYLIST_H
typedef int (*comparefun)(void*,void*);
//操作错误定义
#define LIST_OP_SUCCESS 0
#define LIST_NOT_EXIST -1
#define DATA_EXIST 1
#define DATA_NO_EXIST 0
t
www.eeworm.com/read/100861/15863608
h data_structures.h
/*
List: a singularly-linked list. The point of this class is to be
simple and easy to use; it is not necessarily supposed to be efficient.
Since it allocates and deallocates memory ex
www.eeworm.com/read/385811/6764863
~pas migong.~pas
unit migong;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, ExtCtrls, StdCtrls, Menus;
type //定义一个记录类型
node=record
www.eeworm.com/read/385811/6764869
pas migong.pas
unit migong;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, ExtCtrls, StdCtrls, Menus;
type //定义一个记录类型
node=record
www.eeworm.com/read/406278/11445122
makefile
listDriver: listDriver.o studentRec.o listDB.o listNode.o
g++ listDriver.o studentRec.o listDB.o listNode.o -o listDriver
listDriver.o: listDriver.cc studentRec.h listDB.h listNode.h
g++ -c listDriv
www.eeworm.com/read/148192/12486460
~pas migong.~pas
unit migong;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, ExtCtrls, StdCtrls;
type
node=record
state:0..1;
rect:trect;
www.eeworm.com/read/148192/12486473
pas migong.pas
unit migong;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, ExtCtrls, StdCtrls;
type
node=record
state:0..1;
rect:trect;