代码搜索:链表实现
找到约 10,000 项符合「链表实现」的源代码
代码结果 10,000
www.eeworm.com/read/118025/14890504
cpp 双向链表.cpp
// 双向链表.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
#include "qdlist.h"
int main(int argc, char* argv[])
{
QDList list;
list.Append(100);
lis
www.eeworm.com/read/118025/14890505
plg 双向链表.plg
Build Log
--------------------Configuration: 双向链表 - Win32 Debug--------------------
Command Lines
Creating temporary file "C:\DOCUME~1\heyang1\
www.eeworm.com/read/118025/14890512
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) Cons
www.eeworm.com/read/208727/15238650
cpp 单链表.cpp
#include
class Time{
public:
Time()
{ h = m = 0;
}
Time(int hr, int min)
{ if (hr>=0 && hr=0 && min
www.eeworm.com/read/13112/268431
c 单链表.c
#include
#include
struct roommate
{
char name[20];
long num;
int age;
char birthplace[20];
struct roommate *next;
};
struct roommate *head,*cthis,*cnew;
void
www.eeworm.com/read/13112/268435
c 链表(递归).c
#include
#include
struct listNode{
int data;
struct listNode *nextPtr;
};
typedef struct listNode LISTNODE;
typedef LISTNODE * LISTNODEPTR;
LISTNODEPTR list(LISTNODEPTR , int); /
www.eeworm.com/read/491337/1191827
c 单链表.c
#include
#include
struct roommate
{
char name[20];
long num;
int age;
char birthplace[20];
struct roommate *next;
};
struct roommate *head,*cthis,*cnew;
void
www.eeworm.com/read/491337/1191831
c 链表(递归).c
#include
#include
struct listNode{
int data;
struct listNode *nextPtr;
};
typedef struct listNode LISTNODE;
typedef LISTNODE * LISTNODEPTR;
LISTNODEPTR list(LISTNODEPTR , int); /
www.eeworm.com/read/458530/1585821
c 单链表.c
#include
#include
struct roommate
{
char name[20];
long num;
int age;
char birthplace[20];
struct roommate *next;
};
struct roommate *head,*cthis,*cnew;
void
www.eeworm.com/read/458530/1585825
c 链表(递归).c
#include
#include
struct listNode{
int data;
struct listNode *nextPtr;
};
typedef struct listNode LISTNODE;
typedef LISTNODE * LISTNODEPTR;
LISTNODEPTR list(LISTNODEPTR , int); /