代码搜索:ListNode
找到约 740 项符合「ListNode」的源代码
代码结果 740
www.eeworm.com/read/469528/6929814
h cirlist.h
#include"ListNode.h"
template
class CirList
{
private:
ListNode *head;
int size;
ListNode *currPtr;
public:
CirList(void)
{
head=new ListNode() ;
head->n
www.eeworm.com/read/469251/6979697
h linklist.h
// linkList.h: interface for the linkList class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_LINKLIST_H__DEB787DD_323C_45A8_8CFF_B62661FE246A__INCLU
www.eeworm.com/read/468072/6998972
java stacklist.java
public class StackList
{
private ListNode topOfStack;
public StackList()
{
topOfStack = null;
}
public void makeEmpty()
{
topOfStack = null;
}
public boolean isEm
www.eeworm.com/read/460348/7252961
c sort_listinsert.c
/* 表插入排序的算法源程序*/
#include
struct Node; /* 单链表结点类型 */
typedef int KeyType;
typedef int DataType;
typedef struct Node ListNode;
struct Node {
KeyType key;
www.eeworm.com/read/453390/7421859
cpp statetable.cpp
// StateTable.cpp: implementation of the StateTable class.
//
//////////////////////////////////////////////////////////////////////
#include "stdafx.h"
#include "TONFA.h"
#include "StateTable.
www.eeworm.com/read/450886/7475105
c 5-15.c
#include "stdio.h"
typedef char datatype;
typedef struct node{
datatype data;
struct node *next;
} listnode;
typedef listnode *linklist;
linklist connect(linklist heada,linklist hea
www.eeworm.com/read/450886/7475108
c 5-3.c
#include
#define N 10
typedef char datatype;
typedef struct node{
datatype data;
struct node *next;
} listnode;
typedef listnode *linklist;
listnode *p;
linklist cre
www.eeworm.com/read/450886/7475113
c 5-6.c
#include
typedef char datatype;
typedef struct node{
datatype data;
struct node *next;
} listnode;
typedef listnode *linklist;
listnode *p;
linklist createlist(void)
www.eeworm.com/read/450886/7475116
c 5-9.c
#include
typedef char datatype;
typedef struct node{
datatype data;
struct node *next;
} listnode;
typedef listnode *linklist;
listnode *p;
linklist createlist(void)
www.eeworm.com/read/450886/7475117
c 5-4.c
#include
typedef char datatype;
typedef struct node{
datatype data;
struct node *next;
} listnode;
typedef listnode *linklist;
listnode *p;
linklist createlistr1( )
{