代码搜索:姿态算法

找到约 10,000 项符合「姿态算法」的源代码

代码结果 10,000
www.eeworm.com/read/222252/14699353

txt 最坏适应算法.txt

//最坏适应算法 void worst() { char job_name[20]; int job_length; int i,j,flag,t; coutjob_name; cin>>job_length; flag=0; for(i=0;i
www.eeworm.com/read/122247/14711286

txt rsa算法介绍.txt

RSA算法介绍 (加入日期:2003-4-12 点击数:4866) 【对此文发表评论】 【编程爱好者论坛】 【保存文章至硬盘】 【打印文章】 它是第一个既能用于数据加密也能用于数字签名的算法。它易于理解和操作,也很流行。算法的名字以发明者的名字命名:Ron Rivest, Adi Shamir 和Leonard Adleman。但RSA的安全性一直未能得到理论上的证明。它经历了各种 ...
www.eeworm.com/read/122247/14711296

txt 什么是算法.txt

什么是算法 (加入日期:2003-4-12 点击数:4160) 【对此文发表评论】 【编程爱好者论坛】 【保存文章至硬盘】 【打印文章】 算法 Algorithm 算法是在有限步骤内求解某一问题所使用的一组定义明确的规则。通俗点说,就是计算机解题的过程。在这个过程中,无论是形成解题思路还是编写程序,都是在实施某种算法。前者是推理实现的算法,后者是操作实现的算法。 一个算 ...
www.eeworm.com/read/119972/14815945

ppt 遗传算法.ppt

www.eeworm.com/read/220189/14847279

doc 算法源程序.doc

www.eeworm.com/read/118680/14859577

cpp 多种排序算法.cpp

#include #define N 8 #define TRUE 1 #define FALSE 0 #define LT(a,b) ((a)
www.eeworm.com/read/117956/14893013

txt 基本排序算法.txt

// paixu.cpp : Defines the entry point for the console application. // #include "stdafx.h" void bubble_sort(int *x, int n); void shell_sort(int *x, int n); void select_sort(int *x, int n); voi
www.eeworm.com/read/219125/14893603

txt 数值稳定算法.txt

#include #include void main() { double y_0=(1/205.0+1/246.0)/2,y_1; int n=40; printf("y[40]=%-20f",y_0); while(1) { y_1=1/(5.0*n)-y_0/5.0; printf("y[%d]=%-20f",n-1,