代码搜索:链式
找到约 448 项符合「链式」的源代码
代码结果 448
www.eeworm.com/read/395890/2432509
m compete3.m
function newpop=compete3(popsize,pop,fitvalue)
%%%链式邻域
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% popsize=36;
% n=500;
% po=0.5;
% pop1_init=randperm(n); %产
www.eeworm.com/read/395890/2432576
m compete3.m
function newpop=compete3(popsize,pop,fitvalue)
%%%链式邻域
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% popsize=36;
% n=500;
% po=0.5;
% pop1_init=randperm(n); %产
www.eeworm.com/read/285689/8822813
c lnkqinse.c
/*****************************************************/
/* 向链式队列中插入一个值为x的结点 */
/* 文件名lnkqinse.c,函数名insert_link_queue() */
/**********************************************
www.eeworm.com/read/285689/8822850
c lnkspush.c
/*****************************************************/
/* 向链式栈中插入一个值为x的结点 */
/* 文件名lnkspush.c,函数名push_link_stack() */
/*********************************************
www.eeworm.com/read/179521/9353252
h queuefunction.h
/*--------------------------------------------
用链式存储结构实现链队基本操作的功能函数(QueueFunction.h)
--------------------------------------------*/
#include "stdio.h"
#include "malloc.h"
#include "string
www.eeworm.com/read/243219/12954645
h lqnode.h
//链式队列
typedef struct qnode
{
DataType data;
struct qnode *next;
}LQNode;
typedef struct
{
LQNode *front;
LQNode *rear;
}LQueue;
void QueueInitiate(LQueue *Q)
{
Q->rear=NULL;
www.eeworm.com/read/243219/12954649
h lsnode.h
//链式堆栈
typedef struct snode
{
DataType data;
struct snode *next;
}LSNode;
void StackInitiate(LSNode **head) //初始化
{
if((*head=(LSNode *)malloc(sizeof(LSNode)))==NULL)
exit(1);
(*h
www.eeworm.com/read/274763/10853890
h linkqueue.h
//队列的链式存储结构的定义
typedef struct qnode
{
int data;
struct qnode *next;
}qnode,*queueptr;
typedef struct
{
queueptr front;
queueptr rear;
}linkqueue;
void initqueue(linkqueue &q)
{
www.eeworm.com/read/275469/10815970
cpp stdafx.cpp
// stdafx.cpp : source file that includes just the standard includes
// 链式队列.pch will be the pre-compiled header
// stdafx.obj will contain the pre-compiled type information
#include "stdafx.h"
www.eeworm.com/read/242043/13097523
h prethreaditerator.h
#include "LinStack.h" //包含模板的链式堆栈
#include "ThreadIterator.h"
template
class PreThreadIterator: public ThreadIterator //共有方式继承
{
protected:
LinStack