代码搜索:工具集
找到约 10,000 项符合「工具集」的源代码
代码结果 10,000
www.eeworm.com/read/448767/7526077
pdf scsi指令集.pdf
www.eeworm.com/read/447374/7553917
doc 广州-vc题集.doc
www.eeworm.com/read/446340/7581144
bmp sed指令集.bmp
www.eeworm.com/read/439997/7696128
chm linux 高级技巧集.chm
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/298562/7951125
pdf 算法设计题集.pdf
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