代码搜索:功耗优化

找到约 4,261 项符合「功耗优化」的源代码

代码结果 4,261
www.eeworm.com/read/189078/8490742

txt 筛选法求素数的算法优化.txt

筛选法求素数的算法优化[原创] #define N 1000 void init(int array[],int n) { int i; for(i=0;i
www.eeworm.com/read/289991/8513541

txt 很好的粒子群算法优化程序.txt

#include #include "..\\Utils.h" #include "..\\TSPDataSet.h" #include "PSO.h" static void PSO_MendCycle( TParticle *Particle { int tLooper1, tLooper2; int HasFound;
www.eeworm.com/read/289658/8536586

txt 优化sql server索引的小技巧.txt

优化SQL Server索引的小技巧 作者: BUILDER.COM 2005-01-07 01:46 PM SQL Server中有几个可以让你检测、调整和优化SQL Server性能的工具。在本文中,我将说明如何用SQL Server的工具来优化数据库索引的使用,本文还涉及到有关索引的一般性知识。 关于索引的常识 影响到数据库性能的最大因素就是索引。由于 ...
www.eeworm.com/read/386515/8739257

txt 黄金分割法求优化问题.txt

function [alfa,fval]=GoldenSM(a,b,s,x0) alfa1=a+0.382*(b-a); x1=x0+alfa1*s; y1=myfun(x1); alfa2=a+0.618*(b-a); x2=x0+alfa2*s; y2=myfun(x2); while (b-a)>0.000001 if y1