代码搜索:移相法

找到约 10,000 项符合「移相法」的源代码

代码结果 10,000
www.eeworm.com/read/270577/11032497

swf 拉链法.swf

www.eeworm.com/read/470124/6924882

obj 中断法.obj

www.eeworm.com/read/470124/6924883

lst 中断法.lst

C51 COMPILER V6.12 _衉___ 09/02/2007 23:23:36 PAGE 1 C51 COMPILER V6.12, COMPILATION OF MODULE _衉___ OBJECT MODULE PLACED IN .\
www.eeworm.com/read/470124/6924885

lnp 中断法.lnp

"中断法.obj" TO "中断法" RAMSIZE(256)
www.eeworm.com/read/470124/6924887

plg 中断法.plg

www.eeworm.com/read/470124/6924890

opt 中断法.opt

### uVision2 Project, (C) Keil Software ### Do not modify ! cExt (*.c) aExt (*.a*; *.src) oExt (*.obj) lExt (*.lib) tExt (*.txt) pExt (*.plm) DaveTm { 0,0,0,0,0,0,0,0 } Target (Tar
www.eeworm.com/read/470124/6924893

c 中断法.c

//-----------------------函数声明,变量定义------------------------------------------ #include #define KEY P2 sbit INT_0 =P3^2; // 将p3.2外部中断0 unsigned char key_code,scan,num; //键值
www.eeworm.com/read/470124/6924897

hex 中断法.hex

:10011B00C0F9A4B0999282F880908883C6A1868E8C :05014A0012013780FBEB :080141007F147EF8DEFEDFFAF8 :010149002293 :0A013700C288D2A8D2AF75A00F2233 :0300030002009B5D :10009B00C0E0C0F0C083C082C0D075D0087
www.eeworm.com/read/469288/6980140

txt 进退法.txt

#include "jtf.c" main() {double x0[]={0}; double s[]={1}; double a[1],b[1]; jtf(x0,0.1,s,1,a,b); printf("a[]=%f,b[]=%f\n",a[0],b[0]); getch(); } #include "stdio.h" #include "stdlib.h" #
www.eeworm.com/read/466339/7033983

cpp 回溯法.cpp

/* 以深度优先的方式系统地搜索问题的解的算法称为回溯法 它适用于解一些组合数较大的问题 */ /* 在用回溯法搜索解空间树的时候,通常采用两种策略来避免无效搜索,提高回溯法的搜索效率 。其一是用约束函数在扩展结点处剪去不满足约束的子树,其二是用限界函数剪去不能得到最 优解的子树。这两类函数统称为剪枝函数。 运用回溯法的三个步骤: (1)针对所给问题,定义问题的解空间 (2)确 ...