搜索结果
找到约 874 项符合
TML-P 的查询结果
源码 12345
/****************temic*********t5557***********************************/   
#include &nbsp; <at892051.h> &nbsp; &nbsp;
#include &nbsp; <string.h> &nbsp;&nbsp;
#include &nbsp; <intrins.h> &nbsp; &nbsp;
#include &nbsp; <stdio.h> &nbsp; &nbsp;
#define &nbsp; &nbsp;uchar &nbsp; &nbsp;unsign ...
源码 matlab 0-1背包问题
遗传算法已经成为组合优化问题的近似最优解的一把钥匙。它是一种模拟生物进化过程的计算模型,作为一种新的全局优化搜索算法,它以其简单、鲁棒性强、适应并行处理以及应用范围广等特点,奠定了作为21世纪关键智能计算的地位。
背包问题是一个典型的组合优化问题,在计算理论中属于NP-完全问题, 其计算复杂度为,传统上 ...
源码 数据结构实验
#include&nbsp;<stdio.h>&nbsp;&nbsp;
#include&nbsp;<stdlib.h>&nbsp;///链式栈&nbsp;&nbsp;
&nbsp;&nbsp;
typedef&nbsp;struct&nbsp;node&nbsp;&nbsp;
{&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;int&nbsp;data;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;struc ...
源码 数据结构实验
#include <iostream>
#include <stdio.head>
#include <stdlib.head>
#include <string.head>
#define ElemType int
#define max 100
using namespace std;
typedef struct node1
{
ElemType data;
struct node1 *next;
}Node1,*LinkList;//链栈
typedef struct
{
ElemType *base;
int top;
}SqStack;// ...
技术资料 回声消除芯片ATH8806-P_datasheet.pdf
回声消除芯片ATH8806-P资料手册,具有双麦结构,功耗低,稳态噪声消除能力20db
源码 学生成绩管理
#include<stdio.h>
#include<windows.h>
int xuanxiang;
int studentcount;
int banjihao[100];
int xueqihao[100][10];
char xm[100][100];
int xuehao[100][10];
int score[100][3];
int yuwen;
int shuxue[000];
int yingyu[100];
int c[100];
int p;
char x[1000][100]="",y[100][100]="";/*x学院 y专业 z班级*/&nbsp;
...
论文 官厅水库消落带土壤有机质空间分布特征 宫
:消落带土壤由于在水陆交替的特殊生境和复杂的地球化学共同作用下形成,具有独特的理化性质和生态功能。各营养盐
含量在时间和空间上具有较高的变异性,土壤中有机质的分布及迁移和转化均受到复杂的影响。针对官厅水库流域上游妫水
河段消落带,选择典型消落带落水区,对该区土壤有机质含量的时空分布特征进行研究。结果表 ...
源码 Gibbs法采样程序代码
给定统计样本集,如何估计产生这个样本集的随机变量概率密度函数,是比较熟悉的概率密度估计问题。 求解概率密度估计问题的常用方法是最大似然估计、最大后验估计等。但是思考概率密度估计问题的逆问题:给定一个概率分布p(x),如何让计算机生成满足这个概率分布的样本。 这个问题就是统计模拟中研究的重要问题–采样(Samplin ...