代码搜索:工具集

找到约 10,000 项符合「工具集」的源代码

代码结果 10,000
www.eeworm.com/read/448767/7526077

pdf scsi指令集.pdf

www.eeworm.com/read/446340/7581144

bmp sed指令集.bmp

www.eeworm.com/read/440208/7692331

cpp 佳点集算法.cpp

//用佳点集遗传算法求解函数最大值问题 // f(x)=x1^2+x2^2+x3^2 其中-5.12
www.eeworm.com/read/434482/7864269

txt 背包问题算法集.txt

背包问题算法集 1)登上算法 用登山算法求解背包问题 function []=DengShan(n,G,P,W) %n是背包的个数,G是背包的总容量,P是价值向量,W是物体的重量向量 %n=3;G=20;P=[25,24,15];W2=[18,15,10];%输入量 W2=W; [Y,I]=sort(-P./W2);W1=[];X=[];X1=[]; for i=1:length(I)
www.eeworm.com/read/197077/8032064

txt 最佳顶点割集.txt

//最佳顶点割集 #define MAXN 100 #define inf 1000000000 int max_flow(int n,int mat[][MAXN],int source,int sink){ int v[MAXN],c[MAXN],p[MAXN],ret=0,i,j; for (;;){ for (i=0;i
www.eeworm.com/read/197077/8032070

txt 最小顶点割集.txt

//最小顶点割集 #define MAXN 100 #define inf 1000000000 int max_flow(int n,int mat[][MAXN],int source,int sink){ int v[MAXN],c[MAXN],p[MAXN],ret=0,i,j; for (;;){ for (i=0;i
www.eeworm.com/read/197077/8032072

txt 最小边割集.txt

//最小边割集 #define MAXN 100 #define inf 1000000000 int max_flow(int n,int mat[][MAXN],int source,int sink){ int v[MAXN],c[MAXN],p[MAXN],ret=0,i,j; for (;;){ for (i=0;i