代码搜索:链式

找到约 448 项符合「链式」的源代码

代码结果 448
www.eeworm.com/read/383145/8968387

cpp 链式栈的创建.cpp

#include struct listnode { int data; listnode *next; }; class stack { private: listnode *top; public: stack() { top=NULL; } void push(int item) { listnode *p;
www.eeworm.com/read/134606/13980698

c 链式基数排序.c

/* alg10-11.c 链式基数排序 */ typedef int InfoType; /* 定义其它数据项的类型 */ typedef int KeyType; /* 定义RedType类型的关键字为整型 */ typedef struct { KeyType key; /* 关键字项 */ InfoType otherinfo; /* 其它数据项 */
www.eeworm.com/read/246158/12753264

cpp 7链式队列的操作.cpp

#include struct qnode { int data; qnode *next; }; struct linkqueue { qnode *front,*rear; }; void In_LQueue(linkqueue* &q,int &x) { qnode *p; p=new qnode; p->data=x;
www.eeworm.com/read/290930/8450369

cpp 链式结构的线性表.cpp

//* * * * * * * * * * * * * * * * * * * * * * * * //*CHAPTER :2 (2_2) * //*PROGRAM :链式结构的线性表 * //*CONTENT :生成,插入,删除,定位,查找 * //* * * * * *