代码搜索:链表实现
找到约 10,000 项符合「链表实现」的源代码
代码结果 10,000
www.eeworm.com/read/327978/13053058
exe 单链表的操作.exe
www.eeworm.com/read/327978/13053063
pdb 单链表的操作.pdb
www.eeworm.com/read/327978/13053065
ncb 单链表的操作.ncb
www.eeworm.com/read/327978/13053067
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) Co
www.eeworm.com/read/327978/13053073
cpp 单链表的操作.cpp
#include "stdafx.h"
#include
using namespace std;
void main()
{
coutlengthOfA;
if(cin.fail() || lengthOfA < 0){
cout
www.eeworm.com/read/140772/13062371
c 双链表正排序.c
#include
#include
#include
struct list{
int data;
struct list *next;
struct list *pre;
};
typedef struct list node;
typedef node *link;
link fr
www.eeworm.com/read/327073/13100534
c 双链表正排序.c
#include
#include
#include
struct list{
int data;
struct list *next;
struct list *pre;
};
typedef struct list node;
typedef node *link;
link fr
www.eeworm.com/read/327073/13100538
c 建立链表1.c
/* 链表建立程序 */
#include"stdio.h"
#include
#define NULL 0
#define LEN sizeof(struct student)
struct student
{long num;
int score;
struct student *next;
};
int n; /*全局变量n*/
str
www.eeworm.com/read/327073/13100548
c 单链表倒序.c
#include
struct fsb
{
int data;
int flag;
struct fsb * next;
};
main()
{
struct fsb *p,*head,*sta,*end;
int i,cishu,j;
end=(struct fsb *)malloc(sizeof(struct fsb))
www.eeworm.com/read/327073/13100551
c 单链表1.c
#include
#include
struct roommate
{
char name;
long num;
int age;
char birthplace;
struct roommate *next;
};
struct roommate *head,*cthis,*cnew;
void ins_record(void)