代码搜索:信号链
找到约 10,000 项符合「信号链」的源代码
代码结果 10,000
www.eeworm.com/read/146173/12666271
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/246828/12702959
c bo3-2.c
/* bo3-2.c 链队列(存储结构由c3-2.h定义)的基本操作(9个) */
void InitQueue(LinkQueue *Q)
{ /* 构造一个空队列Q */
(*Q).front=(*Q).rear=(QueuePtr)malloc(sizeof(QNode));
if(!(*Q).front)
exit(OVERFLOW);
(*Q
www.eeworm.com/read/246592/12718078
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/246401/12730373
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/329948/12925685
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/141644/12993096
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/326973/13107516
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/241345/13153931
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/318973/13465150
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/316419/13523263
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);
(