代码搜索:卡尔曼算法

找到约 10,000 项符合「卡尔曼算法」的源代码

代码结果 10,000
www.eeworm.com/read/170011/9823197

cpp 哈夫曼树.cpp

#include #include using namespace std; class hufTree { public: int weight; int flag; int parent; int lchild; int rchild; }; class leafnode { public
www.eeworm.com/read/165890/10047803

cpp 建立哈夫曼.cpp

#include #include #include //Huffman树的存储结构 #define n 5 //叶子数目 #define m 2*n-1 //树中结点总数 typedef struct //结点类型 { float weight; //权值,不妨设权值均大于零 i
www.eeworm.com/read/355949/10241043

cpp 阿克曼函数.cpp

#include #define m 300 class T //****定义一个类 { private: int a; int b; int c; public: friend void PUSH(T*s,int a,int b,int c,int &top); friend void POP(T*s,int &a,int &b,int
www.eeworm.com/read/425773/10324205

cpp 哈夫曼编码.cpp

#include #include #include #define MaxValue 10 #define MaxBit 10 #define MaxN 10 #include"Haffman.h" typedef struct { char zimu; int cishu; float p
www.eeworm.com/read/161836/10366769

txt 赫夫曼树.txt

definition.h ============================================ typedef struct{ unsigned weight; unsigned parent, lchild, rchild; }HTNode, *HuffmanTree;//动态分配数组存储赫夫曼树 typedef char **HuffmanCode;//动态
www.eeworm.com/read/419029/10889106

cpp 哈夫曼编码.cpp

#include #include #include #include #include //typedef int TElemType; const int UINT_MAX=1000; typedef struct { int weight;
www.eeworm.com/read/271876/10977474

cpp 哈夫曼树 .cpp

//* * * * * * * * * * * * * * * * * * * * * * * * //*CHAPTER :4 (4_4) * //*PROGRAM :哈夫曼树 * //*CONTENT :构造哈夫曼树,哈夫曼编码 * //* * * * *
www.eeworm.com/read/417463/10988370

exe 哈夫曼树.exe

www.eeworm.com/read/468529/6992511

cpp 哈弗曼树.cpp

#include #include #include #define M 10000 //定义字符串最大长度 #define N 128 //定义叶子节点个数 typedef struct node //定义哈夫曼树节点结构体 { int weight; str
www.eeworm.com/read/466355/7034372

cpp 哈夫曼编码.cpp

/* 前缀码 我们对每个字符规定一个0,1串作为其代码,并要求任一字符的代码都不是其它 字符代码的前缀。我们称这样的编码具有前缀性质。 */ /* 一般情况下,若C是编码字符集,则表示其最优前缀的二叉树中恰有|C|个叶子。每个叶子 对应于字符集中一个字符,且该二叉树恰有|C|-1个内部结点。 给定编码字符集C及其频率分布f,即C中任一字符c以频率f(c)在数据文件中出现。 C的一 ...