代码搜索:ListNode
找到约 740 项符合「ListNode」的源代码
代码结果 740
www.eeworm.com/read/165890/10047867
cpp 单链表查找1.cpp
#include
#include
//单链表的定义:
typedef char DataType; //DataType可以是任何相应的数据类型如int, float或char
typedef struct node //结点类型定义
{ DataType data; //结点的数据域
struct node *next; //
www.eeworm.com/read/165890/10047876
cpp 单链表删除.cpp
#include
#include
//单链表的定义:
typedef char DataType; //DataType可以是任何相应的数据类型如int, float或char
typedef struct node //结点类型定义
{ DataType data; //结点的数据域
struct node *next; //
www.eeworm.com/read/165747/10052728
txt 3rg5jh6.txt
#include
#include
#include
typedef struct{
char num[5];
char name[9];
char sex[3];
char phone[13];
char addr[31];
}DataType;
typedef struct node{
DataType
www.eeworm.com/read/165705/10053396
h list.h
#include "ListNode.h"
template
class List{
private:
ListNode* head;
int length;
public:
List();
int Length();
T GetValue(int);
bool Insert(int,T);
void Add(T);
www.eeworm.com/read/165705/10053405
cpp list.cpp
#include
#include "List.h"
template
List::List(){
length=0;
}
template
T List::GetValue(int index){
assert( index
www.eeworm.com/read/105246/10246588
cs list.cs
namespace List
{
//链表类
public class Clist
{
protected ListNode Head; //头结点
protected ListNode p; //当前结点
protected int ListLen;
public Clist()
{
Head=null;
p=
www.eeworm.com/read/105246/10246593
cs polynomial.cs
namespace List
{
public class Polynomial:Clist
{
public Polynomial():base(){}
~Polynomial(){}
public void AppendNode(int e,float c)
{
ListNode NewNode=new ListNode(e,c);
if(Li
www.eeworm.com/read/354386/10359826
c nizhi2.c
#include
# include
#define stacksize 100
typedef int datatype;
typedef struct
{
datatype data[stacksize];
int top;
}seqstack;
typedef struct node{
www.eeworm.com/read/279473/10434939
cpp 队列.cpp
#include
class listnode
{
public:
int data;
listnode *next;
listnode(const int &itemval,listnode *ptr=NULL)
{
data=itemval;
next=ptr;
}
};
class queue//带表头
{
publ
www.eeworm.com/read/279175/10457243
c linklist.c
/* Generic linked list routine.
* Copyright (C) 1997, 2000 Kunihiro Ishiguro
*
* This file is part of GNU Zebra.
*
* GNU Zebra is free software; you can redistribute it and/or modify it
* under