代码搜索:信号路径优化

找到约 10,000 项符合「信号路径优化」的源代码

代码结果 10,000
www.eeworm.com/read/380342/9152131

c 股票运动路径模拟.c

#include #include #include #include double frand() { return (double)rand()/(RAND_MAX); } // 配极法产生正态分布, 一次产生两个独立变量 double normal() { doub
www.eeworm.com/read/182735/9193881

v bmg路径计算模块.v

`include "params.v" /*-----------------------------------*/ // Module : BMG // File : bmg.v // Description : Description of BMG Unit in Viterbi Decoder // Simulator : Modelsim 4.6 / Windows
www.eeworm.com/read/182735/9193883

v tbu路径回溯模块.v

`include "params.v" /*-----------------------------------*/ // Module : TBU // File : tbu.v // Description : Description of TBU Unit in Viterbi Decoder // Simulator : Modelsim 4.6 / Windows
www.eeworm.com/read/182735/9193887

v mmu路径储存模块.v

`include "params.v" /*-----------------------------------*/ // Module : MMU // File : mmu.v // Description : Description of MMU Unit in Viterbi Decoder // Simulator : Modelsim 4.6 / Windows
www.eeworm.com/read/418667/10936356

cpp 最短路径算法.cpp

//=================================== #include #include "string.h" #include using namespace std; #define vex_num 20 #define vertex_max 20 #define maxint 2000 typedef char
www.eeworm.com/read/469138/6978183

txt 最小路径覆盖.txt

//最小路径覆盖,O(n^3) //求解最小的路径覆盖图中所有点,有向图无向图均适用 //注意此问题等价二分图最大匹配,可以用邻接表或正向表减小复杂度 //返回最小路径条数,pre返回前指针(起点-1),next返回后指针(终点-1) #include #define MAXN 310 #define _clr(x) memset(x,0xff,sizeof(in