搜索结果

找到约 2,765 项符合 n-sensors 的查询结果

文件格式 用贪心算法解题: 设n是一个正整数。现在要求将n分解为若干互不相同的自然数的和

用贪心算法解题: 设n是一个正整数。现在要求将n分解为若干互不相同的自然数的和,且使这些自然数 的乘积最大。
https://www.eeworm.com/dl/639/387551.html
下载: 94
查看: 5112

数学计算 采用LasVegas概率算法高效解决N皇后问题

采用LasVegas概率算法高效解决N皇后问题,并统计其成功与失败的概率,这是中国科技大学的高级算法设计的设计
https://www.eeworm.com/dl/641/387621.html
下载: 43
查看: 1048

汇编语言 输入一个正整数n,输出自然数数列前n项和

输入一个正整数n,输出自然数数列前n项和
https://www.eeworm.com/dl/644/387684.html
下载: 176
查看: 1109

串口编程 UATR0 试验,从串口以9600,N,1的模式循环输出16进制的

UATR0 试验,从串口以9600,N,1的模式循环输出16进制的
https://www.eeworm.com/dl/624/387912.html
下载: 90
查看: 1035

嵌入式/单片机编程 UATR0 试验,从串口以9600,N,1的模式循环输出16进制的

UATR0 试验,从串口以9600,N,1的模式循环输出16进制的
https://www.eeworm.com/dl/647/387917.html
下载: 179
查看: 1029

人工智能/神经网络 #include "iostream.h" #include "iomanip.h" #define N 20 //学习样本个数 #define IN 1 //输入层神经元数目 #define

#include "iostream.h" #include "iomanip.h" #define N 20 //学习样本个数 #define IN 1 //输入层神经元数目 #define HN 8 //隐层神经元数目 #define ON 1 //输出层神经元数目 double P[IN] //单个样本输入数据 double T[ON] //单个样本教师数据 double W[HN][IN] //输入层至隐层权值 double V[ON][HN] //隐层至输出层权值 ...
https://www.eeworm.com/dl/650/387939.html
下载: 115
查看: 1050

数据结构 void insert_sort(int *a,int n) { if(n==1) return insert_sort(a,n-1) int temp=a[n-1] for(

void insert_sort(int *a,int n) { if(n==1) return insert_sort(a,n-1) int temp=a[n-1] for(int i=n-2 i>=0 i--) { if(temp<a[i]) a[i+1]=a[i] else break } a[i+1]=temp }
https://www.eeworm.com/dl/654/388234.html
下载: 98
查看: 1114

数据结构 递归方法解决N皇后问题

递归方法解决N皇后问题,依次显示所有路径。
https://www.eeworm.com/dl/654/388287.html
下载: 129
查看: 1062

多国语言处理 n algorithm for domain independent linear text segmentation This the Windows version of the C99 al

n algorithm for domain independent linear text segmentation This the Windows version of the C99 algorithm that was presented in my NAACL00 paper. [Directories] bin contains executables, JAR file and test files classes compiled code as individual class files doc NAACL 00 paper describing the alg ...
https://www.eeworm.com/dl/637/388927.html
下载: 192
查看: 1066

微处理器开发 S3C44B0x上面的N皇后问题程序

S3C44B0x上面的N皇后问题程序,使用串口(UART0)作为输入和输出。
https://www.eeworm.com/dl/655/389047.html
下载: 119
查看: 1015