代码搜索:ListNode
找到约 740 项符合「ListNode」的源代码
代码结果 740
www.eeworm.com/read/100263/15879612
c llist.c
/* Autoconf patching by David Hedbor, neotron@lysator.liu.se */
/*********************************************************************/
/* file: llist.c - linked-list datastructure
www.eeworm.com/read/335118/6280781
c 02051311.c
#include
#include
struct listNode
{
int data;
struct listNode * nextPtr;
};
typedef struct listNode LISTNODE;
typedef LISTNODE * LISTNODEPTR;
void insert(LI
www.eeworm.com/read/335121/12549772
c 02051321.c
#include
#include
struct listNode{
int data;
struct listNode * nextPtr;
};
typedef struct listNode LISTNODE;
typedef LISTNODE * LISTNODEPTR;
void create(LISTNODEPTR *,
www.eeworm.com/read/335105/12550452
c 02051211.c
#include
#include
struct listNode{
char data;
struct listNode * nextPtr;
};
typedef struct listNode LISTNODE;
typedef LISTNODE * LISTNODEPTR;
void printList(LISTNODEPT
www.eeworm.com/read/279175/10457026
c if.c
/*
* Interface functions.
* Copyright (C) 1997, 98 Kunihiro Ishiguro
*
* This file is part of GNU Zebra.
*
* GNU Zebra is free software; you can redistribute it and/or modify
* it under the t
www.eeworm.com/read/448648/7528171
c if.c
/*
* Interface functions.
* Copyright (C) 1997, 98 Kunihiro Ishiguro
*
* This file is part of GNU Zebra.
*
* GNU Zebra is free software; you can redistribute it and/or modify
* it under the t
www.eeworm.com/read/145256/12741438
c if.c
/*
* Interface functions.
* Copyright (C) 1997, 98 Kunihiro Ishiguro
*
* This file is part of GNU Zebra.
*
* GNU Zebra is free software; you can redistribute it and/or modify
* it under the t
www.eeworm.com/read/127689/14340285
h ospfh_linklist.h
#ifndef _ZEBRA_LINKLIST_H
#define _ZEBRA_LINKLIST_H
struct listnode
{
struct listnode *next;
struct listnode *prev;
void *data;
};
struct list
{
struct listnode *head;
str
www.eeworm.com/read/127689/14340341
h ospfh_linklist.h
#ifndef _ZEBRA_LINKLIST_H
#define _ZEBRA_LINKLIST_H
struct listnode
{
struct listnode *next;
struct listnode *prev;
void *data;
};
struct list
{
struct listnode *head;
str
www.eeworm.com/read/117259/14933247
h regulartonfa.h
#ifndef _REGULAR_TO_NFA_H_
#define _REGULAR_TO_NFA_H_
#include "node.h" //Node的结点定义
#include //从正则到NFA用
/*
* 本程序要用的外部接口
*/
extern char *string; //"10|(01|1)*0|1*#";