搜索资源列表
分组交换
- 讲述分组交换的概念,优缺点,和其他交换方式的比较,是数据通信方面的好ppt-The document gives the concept of packet switching, longcoming and shortcoming. And also give a compare with other techs. It s a good material about data communication.
华中理工大学学报000415
- 讨论了用MATLAB实现经典谱估计的各种方法,比较了它们的性能指标,并优选它们的参数.得出了在科学研究和工程技术应用中有一定参考价值的结论-discussed using MATLAB classical spectrum estimation of various methods to compare their performance indicators, Optimization and their parameters. come in scientific research, eng
deconvgaijin
- 卷积码译码算法改进 实现Conv.(2,1,9)的编码、软判决滑动窗维特比译码,其生成多项式为G0=561(八进制),G1=753(八进制),调制方式为BPSK,信道为AWGN,比较不同的译码深度对译码器性能的影响-convolutional code decoding algorithm to improve achievement Conv. (2,1,9) of the Code, Soft Decision sliding window Viterbi Decoder, genera
sle442
- 4442的读写校验c程序.测试是否有SLE4442卡插入读写器。若有,核对密码,然后进行读写操作,并比较两次操作数据是否相同,若相同,返回操作正确。-4442 write c calibration procedures. Testing whether there SLE4442 insert their cards into the Reader. If so, check password and then proceed to read and write operations, and
Kruscal_C++_implement
- 1.kruscal_CDT: 在Eclipse里面的CDT和MinGW(提供gcc)的环境下所编写的。 2.kruscal_VC2005: 在VC2005里面编写的。 3.以上两个的代码有点不同,区别主要在于compare函数 4.kruscal算法里面,我有两个不同的实现,一个是最小化堆里面放EdgeNode的指针,一个是最小化堆里面放EdgeNode的Object实例。前者使用了compare函数来比较大小,后者则是在EdgeNode的class里面重载运算符。-1.kru
sorting2
- 产生1000个随机整数,分别用“冒泡”法和快速法编制程序进行排序,并比较他们的运行时间-produce 1,000 random integer, "Bubble" and rapid method for sorting procedures, and compare their running time
54545jkhjkhjhhjh6
- 比较2字符是否相等 比较2字符是否相等-compare whether two characters in the same two characters whether more equal comparison whether the same two characters
windiff
- windiff compare different files
YUVDiff
- Haskell 代码。 对于 YUV 420 的图象,比较两个图象文件的差别像素,以宏块的方式表现。 我本人主要将之用于 H264 编解码器的 deblock 过程的测试辅助定位。 很容易扩展为 YUV422 或 444 格式的图象。 更详细用法见程序内的帮助。-Haskell code. YUV 420 for the images to compare the differences between image pixels, macro bl
text
- 记事本的基本功能,能够比较实现记事本的基本功能-the notebook's basic functions, to compare the notebook to achieve the basic functions
4种排序实现与比较
- 这算法实现了插入排序,快速排序,shell,堆排序,还有它们的性能比较!-insertion sort, quick sort, shell, heap sort, and compare their performance!
WirelessNetworkingLab103802.11Carrier-Sense
- The goal of this exercise is to understand the concept of Carrier-Sensing in IEEE 802.11 standard and compare Physical Carrier Sense and Virtual Carrier Sense mechanisms.
AVL树实现
- 纯C实现的AVL树,Demo是MFC的。非递归的遍历,完全支持添加、删除和搜索节点。设计灵活,容易扩展。以下是API struct tagAvlTree; typedef struct tagAvlTree AvlTree; struct tagAvlNode; typedef struct tagAvlNode AvlNode; struct tagAvlNode { AvlNode *left; AvlNode *right; int32_t height;