代码搜索:信号链
找到约 10,000 项符合「信号链」的源代码
代码结果 10,000
www.eeworm.com/read/423304/10573014
c bo3-2.c
/* bo3-2.c 链队列(存储结构由c3-2.h定义)的基本操作(9个) */
Status InitQueue(LinkQueue *Q)
{ /* 构造一个空队列Q */
(*Q).front=(*Q).rear=(QueuePtr)malloc(sizeof(QNode));
if(!(*Q).front)
exit(OVERFLOW);
(
www.eeworm.com/read/466955/7024714
c bo3-2.c
/* bo3-2.c 链队列(存储结构由c3-2.h定义)的基本操作(9个) */
Status InitQueue(LinkQueue *Q)
{ /* 构造一个空队列Q */
(*Q).front=(*Q).rear=(QueuePtr)malloc(sizeof(QNode));
if(!(*Q).front)
exit(OVERFLOW);
(
www.eeworm.com/read/466955/7024930
c bo3-2.c
/* bo3-2.c 链队列(存储结构由c3-2.h定义)的基本操作(9个) */
Status InitQueue(LinkQueue *Q)
{ /* 构造一个空队列Q */
(*Q).front=(*Q).rear=(QueuePtr)malloc(sizeof(QNode));
if(!(*Q).front)
exit(OVERFLOW);
(
www.eeworm.com/read/460348/7252983
c lstack.c
/*栈链接表示:函数定义*/
#include
#include
#include "lstack.h"
/*申请链栈结构空间,创建一空链接栈,返回指向空链接栈的指针*/
PLinkStack createEmptyStack_link(void) {
PLinkStack plstack;
plstack = (P
www.eeworm.com/read/456942/7336396
h c4-3.h
// c4-3.h 串的块链存储表示
#define CHUNKSIZE 4 // 可由用户定义的块大小
struct Chunk
{
char ch[CHUNKSIZE];
Chunk *next;
};
struct LString
{
Chunk *head,*tail; // 串的头和尾指针
int curlen; // 串的当前长
www.eeworm.com/read/454932/7381648
h c4-3.h
// c4-3.h 串的块链存储表示
#define CHUNKSIZE 4 // 可由用户定义的块大小
struct Chunk
{
char ch[CHUNKSIZE];
Chunk *next;
};
struct LString
{
Chunk *head,*tail; // 串的头和尾指针
int curlen; // 串的当前长
www.eeworm.com/read/444277/7614807
c bo3-2.c
/* bo3-2.c 链队列(存储结构由c3-2.h定义)的基本操作(9个) */
Status InitQueue(LinkQueue *Q)
{ /* 构造一个空队列Q */
(*Q).front=(*Q).rear=(QueuePtr)malloc(sizeof(QNode));
if(!(*Q).front)
exit(OVERFLOW);
(
www.eeworm.com/read/442220/7656989
c bo3-2.c
/* bo3-2.c 链队列(存储结构由c3-2.h定义)的基本操作(9个) */
Status InitQueue(LinkQueue *Q)
{ /* 构造一个空队列Q */
(*Q).front=(*Q).rear=(QueuePtr)malloc(sizeof(QNode));
if(!(*Q).front)
exit(OVERFLOW);
(
www.eeworm.com/read/438922/7719375
c bo3-2.c
/* bo3-2.c 链队列(存储结构由c3-2.h定义)的基本操作(9个) */
Status InitQueue(LinkQueue *Q)
{ /* 构造一个空队列Q */
(*Q).front=(*Q).rear=(QueuePtr)malloc(sizeof(QNode));
if(!(*Q).front)
exit(OVERFLOW);
(
www.eeworm.com/read/295928/8134512
h c4-3.h
// c4-3.h 串的块链存储表示
#define CHUNKSIZE 4 // 可由用户定义的块大小
struct Chunk
{
char ch[CHUNKSIZE];
Chunk *next;
};
struct LString
{
Chunk *head,*tail; // 串的头和尾指针
int curlen; // 串的当前长